Uses of Class
io.lettuce.core.models.stream.PendingMessages
| 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.
|
| io.lettuce.core.models.stream |
Model and parser for the Stream-related command output such as XPENDING.
|
-
Uses of PendingMessages in io.lettuce.core
Methods in io.lettuce.core that return types with arguments of type PendingMessages Modifier and Type Method Description RedisFuture<PendingMessages>AbstractRedisAsyncCommands. xpending(K key, K group)Mono<PendingMessages>AbstractRedisReactiveCommands. xpending(K key, K group) -
Uses of PendingMessages in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async that return types with arguments of type PendingMessages Modifier and Type Method Description RedisFuture<PendingMessages>RedisStreamAsyncCommands. xpending(K key, K group)Read pending messages from a stream for agroup. -
Uses of PendingMessages in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive that return types with arguments of type PendingMessages Modifier and Type Method Description Mono<PendingMessages>RedisStreamReactiveCommands. xpending(K key, K group)Read pending messages from a stream for agroup. -
Uses of PendingMessages in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync that return PendingMessages Modifier and Type Method Description PendingMessagesRedisStreamCommands. xpending(K key, K group)Read pending messages from a stream for agroup. -
Uses of PendingMessages in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async that return types with arguments of type PendingMessages Modifier and Type Method Description AsyncExecutions<PendingMessages>NodeSelectionStreamAsyncCommands. xpending(K key, K group)Read pending messages from a stream for agroup. -
Uses of PendingMessages in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync that return types with arguments of type PendingMessages Modifier and Type Method Description Executions<PendingMessages>NodeSelectionStreamCommands. xpending(K key, K group)Read pending messages from a stream for agroup. -
Uses of PendingMessages in io.lettuce.core.models.stream
Methods in io.lettuce.core.models.stream that return PendingMessages Modifier and Type Method Description static PendingMessagesPendingParser. parse(List<?> xpendingOutput)Parse the output of the Redis XPENDING reporting a summary on pending messages.