Interface IStoredListIterator<T>

All Known Subinterfaces:
IEntryCacheInfo
All Known Implementing Classes:
BlobStoreRefEntryCacheInfo, EvictableEntryCacheInfo, ExternallyLockedStoredList.StoredListIterator, MemoryBasedEntryCacheInfo, MVCCEntryCacheInfo, MVCCShellEntryCacheInfo, StoredListIterator, TemplateCacheInfo

public interface IStoredListIterator<T>
A cursor holder of a StoredList for each scan. This class is used in order to return and request (during scan) information from the list.
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the subject pointed to by the cursor's scan.
    void
    Release of this SLHolder resource
    void
    setSubject(T subject)
    Sets the subject pointed to by the cursor's scan.
  • Method Details

    • setSubject

      void setSubject(T subject)
      Sets the subject pointed to by the cursor's scan.
      Parameters:
      subject - The subject to set.
    • getSubject

      T getSubject()
      Gets the subject pointed to by the cursor's scan.
      Returns:
      Returns the subject.
    • release

      void release()
      Release of this SLHolder resource
      See Also: