Uses of Class
io.lettuce.core.XPendingArgs
| 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 XPendingArgs in io.lettuce.core
Methods in io.lettuce.core that return XPendingArgs Modifier and Type Method Description XPendingArgs<K>XPendingArgs. consumer(Consumer<K> consumer)XPendingArgs<K>XPendingArgs. idle(long milliseconds)Include only entries that are idle formilliseconds.XPendingArgs<K>XPendingArgs. idle(Duration timeout)Include only entries that are idle forDuration.XPendingArgs<K>XPendingArgs. limit(Limit limit)XPendingArgs<K>XPendingArgs. range(Range<String> range)static <K> XPendingArgs<K>XPendingArgs.Builder. xpending(Consumer<K> consumer, Range<String> range, Limit limit)Create a newXPendingArgs.Methods in io.lettuce.core with parameters of type XPendingArgs Modifier and Type Method Description RedisFuture<List<PendingMessage>>AbstractRedisAsyncCommands. xpending(K key, XPendingArgs<K> args)Flux<PendingMessage>AbstractRedisReactiveCommands. xpending(K key, XPendingArgs<K> args) -
Uses of XPendingArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type XPendingArgs Modifier and Type Method Description RedisFuture<List<PendingMessage>>RedisStreamAsyncCommands. xpending(K key, XPendingArgs<K> args)Read pending messages from a stream within a specificXPendingArgs. -
Uses of XPendingArgs in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type XPendingArgs Modifier and Type Method Description Flux<PendingMessage>RedisStreamReactiveCommands. xpending(K key, XPendingArgs<K> args)Read pending messages from a stream within a specificXPendingArgs. -
Uses of XPendingArgs in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type XPendingArgs Modifier and Type Method Description List<PendingMessage>RedisStreamCommands. xpending(K key, XPendingArgs<K> args)Read pending messages from a stream within a specificXPendingArgs. -
Uses of XPendingArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type XPendingArgs Modifier and Type Method Description AsyncExecutions<List<PendingMessage>>NodeSelectionStreamAsyncCommands. xpending(K key, XPendingArgs<K> args)Read pending messages from a stream within a specificXPendingArgs. -
Uses of XPendingArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type XPendingArgs Modifier and Type Method Description Executions<List<PendingMessage>>NodeSelectionStreamCommands. xpending(K key, XPendingArgs<K> args)Read pending messages from a stream within a specificXPendingArgs.