Uses of Interface
org.redisson.api.stream.StreamReadGroupArgs
-
Packages that use StreamReadGroupArgs Package Description org.redisson org.redisson.api org.redisson.api.stream -
-
Uses of StreamReadGroupArgs in org.redisson
Methods in org.redisson with parameters of type StreamReadGroupArgs Modifier and Type Method Description Map<StreamMessageId,Map<K,V>>
RedissonStream. readGroup(String groupName, String consumerName, StreamReadGroupArgs args)
RFuture<Map<StreamMessageId,Map<K,V>>>
RedissonStream. readGroupAsync(String groupName, String consumerName, StreamReadGroupArgs args)
-
Uses of StreamReadGroupArgs in org.redisson.api
Methods in org.redisson.api with parameters of type StreamReadGroupArgs Modifier and Type Method Description Map<StreamMessageId,Map<K,V>>
RStream. readGroup(String groupName, String consumerName, StreamReadGroupArgs args)
Read stream data from consumer group and current stream only.reactor.core.publisher.Mono<Map<StreamMessageId,Map<K,V>>>
RStreamReactive. readGroup(String groupName, String consumerName, StreamReadGroupArgs args)
Read stream data from consumer group and current stream only.io.reactivex.rxjava3.core.Single<Map<StreamMessageId,Map<K,V>>>
RStreamRx. readGroup(String groupName, String consumerName, StreamReadGroupArgs args)
Read stream data from consumer group and current stream only.RFuture<Map<StreamMessageId,Map<K,V>>>
RStreamAsync. readGroupAsync(String groupName, String consumerName, StreamReadGroupArgs args)
Read stream data from consumer group and current stream only. -
Uses of StreamReadGroupArgs in org.redisson.api.stream
Methods in org.redisson.api.stream that return StreamReadGroupArgs Modifier and Type Method Description StreamReadGroupArgs
StreamReadGroupArgs. count(int count)
Defines stream data size limit.static StreamReadGroupArgs
StreamReadGroupArgs. greaterThan(StreamMessageId id)
Defines to return messages of current Stream with ids greater than defined message id.static StreamReadGroupArgs
StreamReadGroupArgs. neverDelivered()
Defines to return messages of current Stream never delivered to any other consumer.StreamReadGroupArgs
StreamReadGroupArgs. noAck()
Defines avoid of adding messages to Pending Entries List.StreamReadGroupArgs
StreamReadGroupArgs. timeout(Duration timeout)
Defines time interval to wait for stream data availability.
-