Class SScanBlockingCursorImpl<V>

java.lang.Object
io.quarkus.redis.runtime.datasource.SScanBlockingCursorImpl<V>
All Implemented Interfaces:
Cursor<List<V>>, SScanCursor<V>

public class SScanBlockingCursorImpl<V> extends Object implements SScanCursor<V>
  • Constructor Details

  • Method Details

    • hasNext

      public boolean hasNext()
      Specified by:
      hasNext in interface Cursor<V>
    • next

      public List<V> next()
      Specified by:
      next in interface Cursor<V>
    • cursorId

      public long cursorId()
      Specified by:
      cursorId in interface Cursor<V>
    • toIterable

      public Iterable<V> toIterable()
      Description copied from interface: SScanCursor
      Returns an Iterable providing each member of the set individually. Unlike Cursor.next() which provides the members by batch, this method returns them one by one.
      Specified by:
      toIterable in interface SScanCursor<V>
      Returns:
      the iterable