Package io.quarkus.redis.datasource
Interface ReactiveCursor<T>
-
- All Known Subinterfaces:
ReactiveHashScanCursor<K,V>,ReactiveKeyScanCursor<K>,ReactiveSScanCursor<V>,ReactiveZScanCursor<V>
- All Known Implementing Classes:
HScanReactiveCursorImpl,ScanReactiveCursorImpl,SScanReactiveCursorImpl,ZScanReactiveCursorImpl
public interface ReactiveCursor<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()io.smallrye.mutiny.Uni<T>next()
-
-
-
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
io.smallrye.mutiny.Uni<T> next()
-
cursorId
long cursorId()
-
-