Package io.quarkus.redis.datasource
Interface Cursor<T>
-
- All Known Subinterfaces:
HashScanCursor<K,V>,KeyScanCursor<K>,SScanCursor<V>,ZScanCursor<V>
- All Known Implementing Classes:
HashScanBlockingCursorImpl,ScanBlockingCursorImpl,SScanBlockingCursorImpl,ZScanBlockingCursorImpl
public interface Cursor<T>
-
-
Field Summary
Fields Modifier and Type Field Description static longINITIAL_CURSOR_IDThe cursor id when no operations have been emitted yet.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description longcursorId()booleanhasNext()Tnext()
-
-
-
Field Detail
-
INITIAL_CURSOR_ID
static final long INITIAL_CURSOR_ID
The cursor id when no operations have been emitted yet.- See Also:
- Constant Field Values
-
-
Method Detail
-
hasNext
boolean hasNext()
-
next
T next()
-
cursorId
long cursorId()
-
-