Interface ReactiveHashScanCursor<K,V>

All Superinterfaces:
ReactiveCursor<Map<K,V>>
All Known Implementing Classes:
HScanReactiveCursorImpl

public interface ReactiveHashScanCursor<K,V> extends ReactiveCursor<Map<K,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<Map.Entry<K,V>>
    Produces a Multi emitting each entry from hash individually.

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

    cursorId, hasNext, next
  • Method Details

    • toMulti

      io.smallrye.mutiny.Multi<Map.Entry<K,V>> toMulti()
      Produces a Multi emitting each entry from hash individually. Unlike ReactiveCursor.next() which provides the entries by batch, this method returns them one by one.
      Returns:
      the multi