Interface ReactiveKeyScanCursor<K>

All Superinterfaces:
ReactiveCursor<Set<K>>
All Known Implementing Classes:
ScanReactiveCursorImpl

public interface ReactiveKeyScanCursor<K> extends ReactiveCursor<Set<K>>
  • Field Summary

    Fields inherited from interface io.quarkus.redis.datasource.ReactiveCursor

    INITIAL_CURSOR_ID
  • Method Summary

    Modifier and Type
    Method
    Description
    io.smallrye.mutiny.Multi<K>
    Produces a Multi emitting each key individually.

    Methods inherited from interface io.quarkus.redis.datasource.ReactiveCursor

    cursorId, hasNext, next
  • Method Details

    • toMulti

      io.smallrye.mutiny.Multi<K> toMulti()
      Produces a Multi emitting each key individually. Unlike ReactiveCursor.next() which provides the keys by batch, this method returns them one by one.
      Returns:
      the multi