Uses of Class
org.redisson.api.AutoClaimResult
-
Packages that use AutoClaimResult Package Description org.redisson org.redisson.api -
-
Uses of AutoClaimResult in org.redisson
Methods in org.redisson that return AutoClaimResult Modifier and Type Method Description AutoClaimResult<K,V>
RedissonStream. autoClaim(String groupName, String consumerName, long idleTime, TimeUnit idleTimeUnit, StreamMessageId startId, int count)
Methods in org.redisson that return types with arguments of type AutoClaimResult Modifier and Type Method Description RFuture<AutoClaimResult<K,V>>
RedissonStream. autoClaimAsync(String groupName, String consumerName, long idleTime, TimeUnit idleTimeUnit, StreamMessageId startId, int count)
-
Uses of AutoClaimResult in org.redisson.api
Methods in org.redisson.api that return AutoClaimResult Modifier and Type Method Description AutoClaimResult<K,V>
RStream. autoClaim(String groupName, String consumerName, long idleTime, TimeUnit idleTimeUnit, StreamMessageId startId, int count)
Transfers ownership of pending messages by id to a new consumer by name if idle time of messages and startId are greater than defined value.Methods in org.redisson.api that return types with arguments of type AutoClaimResult Modifier and Type Method Description reactor.core.publisher.Mono<AutoClaimResult<K,V>>
RStreamReactive. autoClaim(String groupName, String consumerName, long idleTime, TimeUnit idleTimeUnit, StreamMessageId startId, int count)
Transfers ownership of pending messages by id to a new consumer by name if idle time of messages and startId are greater than defined value.io.reactivex.rxjava3.core.Single<AutoClaimResult<K,V>>
RStreamRx. autoClaim(String groupName, String consumerName, long idleTime, TimeUnit idleTimeUnit, StreamMessageId startId, int count)
Transfers ownership of pending messages by id to a new consumer by name if idle time of messages and startId are greater than defined value.RFuture<AutoClaimResult<K,V>>
RStreamAsync. autoClaimAsync(String groupName, String consumerName, long idleTime, TimeUnit idleTimeUnit, StreamMessageId startId, int count)
Transfers ownership of pending messages by id to a new consumer by name if idle time of messages and startId are greater than defined value.
-