Uses of Class
io.lettuce.core.XAutoClaimArgs
| Package | Description |
|---|---|
| io.lettuce.core |
The Redis client package containing
RedisClient for Redis Standalone and Redis Sentinel operations. |
| io.lettuce.core.api.async |
Standalone Redis API for asynchronous executed commands.
|
| io.lettuce.core.api.reactive |
Standalone Redis API for reactive command execution.
|
| io.lettuce.core.api.sync |
Standalone Redis API for synchronous executed commands.
|
| io.lettuce.core.cluster.api.async |
Redis Cluster API for asynchronous executed commands.
|
| io.lettuce.core.cluster.api.sync |
Redis Cluster API for synchronous executed commands.
|
-
Uses of XAutoClaimArgs in io.lettuce.core
Methods in io.lettuce.core that return XAutoClaimArgs Modifier and Type Method Description XAutoClaimArgs<K>XAutoClaimArgs. consumer(Consumer<K> consumer)Configure theConsumer.XAutoClaimArgs<K>XAutoClaimArgs. count(long count)The optionalcountargument, which defaults to100, is the upper limit of the number of entries that the command attempts to claim.static <K> XAutoClaimArgs<K>XAutoClaimArgs.Builder. justid(Consumer<K> consumer, long minIdleTime, String startId)Creates newXAutoClaimArgsand set theJUSTIDflag to return just the message id and do not increment the retry counter.static <K> XAutoClaimArgs<K>XAutoClaimArgs.Builder. justid(Consumer<K> consumer, Duration minIdleTime, String startId)Creates newXAutoClaimArgsand set theJUSTIDflag to return just the message id and do not increment the retry counter.XAutoClaimArgs<K>XAutoClaimArgs. justid()The optionalJUSTIDargument changes the reply to return just an array of IDs of messages successfully claimed, without returning the actual message.XAutoClaimArgs<K>XAutoClaimArgs. minIdleTime(long milliseconds)Return only messages that are idle for at leastmilliseconds.XAutoClaimArgs<K>XAutoClaimArgs. minIdleTime(Duration minIdleTime)Return only messages that are idle for at leastminIdleTime.XAutoClaimArgs<K>XAutoClaimArgs. startId(String startId)Set the startId.static <K> XAutoClaimArgs<K>XAutoClaimArgs.Builder. xautoclaim(Consumer<K> consumer, long minIdleTime, String startId)Creates newXAutoClaimArgs.static <K> XAutoClaimArgs<K>XAutoClaimArgs.Builder. xautoclaim(Consumer<K> consumer, Duration minIdleTime, String startId)Creates newXAutoClaimArgs.Methods in io.lettuce.core with parameters of type XAutoClaimArgs Modifier and Type Method Description RedisFuture<ClaimedMessages<K,V>>AbstractRedisAsyncCommands. xautoclaim(K key, XAutoClaimArgs<K> args)Mono<ClaimedMessages<K,V>>AbstractRedisReactiveCommands. xautoclaim(K key, XAutoClaimArgs<K> args) -
Uses of XAutoClaimArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type XAutoClaimArgs Modifier and Type Method Description RedisFuture<ClaimedMessages<K,V>>RedisStreamAsyncCommands. xautoclaim(K key, XAutoClaimArgs<K> args)Gets ownership of one or multiple messages in the Pending Entries List of a given stream consumer group. -
Uses of XAutoClaimArgs in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type XAutoClaimArgs Modifier and Type Method Description Mono<ClaimedMessages<K,V>>RedisStreamReactiveCommands. xautoclaim(K key, XAutoClaimArgs<K> args)Gets ownership of one or multiple messages in the Pending Entries List of a given stream consumer group. -
Uses of XAutoClaimArgs in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type XAutoClaimArgs Modifier and Type Method Description ClaimedMessages<K,V>RedisStreamCommands. xautoclaim(K key, XAutoClaimArgs<K> args)Gets ownership of one or multiple messages in the Pending Entries List of a given stream consumer group. -
Uses of XAutoClaimArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type XAutoClaimArgs Modifier and Type Method Description AsyncExecutions<ClaimedMessages<K,V>>NodeSelectionStreamAsyncCommands. xautoclaim(K key, XAutoClaimArgs<K> args)Gets ownership of one or multiple messages in the Pending Entries List of a given stream consumer group. -
Uses of XAutoClaimArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type XAutoClaimArgs Modifier and Type Method Description Executions<ClaimedMessages<K,V>>NodeSelectionStreamCommands. xautoclaim(K key, XAutoClaimArgs<K> args)Gets ownership of one or multiple messages in the Pending Entries List of a given stream consumer group.