Interface ReactiveZScanCursor<V>

All Superinterfaces:
ReactiveCursor<List<ScoredValue<V>>>
All Known Implementing Classes:
ZScanReactiveCursorImpl

public interface ReactiveZScanCursor<V> extends ReactiveCursor<List<ScoredValue<V>>>
  • 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<ScoredValue<V>>
    Produces a Multi emitting each member from the sorted set individually.

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

    cursorId, hasNext, next
  • Method Details

    • toMulti

      io.smallrye.mutiny.Multi<ScoredValue<V>> toMulti()
      Produces a Multi emitting each member from the sorted set individually. Unlike ReactiveCursor.next() which provides the members by batch, this method returns them one by one.
      Returns:
      the multi