| 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.
|
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<PendingMessages> |
AbstractRedisAsyncCommands.xpending(K key,
K group) |
Mono<PendingMessages> |
AbstractRedisReactiveCommands.xpending(K key,
K group) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<PendingMessages> |
RedisStreamAsyncCommands.xpending(K key,
K group)
Read pending messages from a stream for a
group. |
| Modifier and Type | Method and Description |
|---|---|
Mono<PendingMessages> |
RedisStreamReactiveCommands.xpending(K key,
K group)
Read pending messages from a stream for a
group. |
| Modifier and Type | Method and Description |
|---|---|
PendingMessages |
RedisStreamCommands.xpending(K key,
K group)
Read pending messages from a stream for a
group. |
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<PendingMessages> |
NodeSelectionStreamAsyncCommands.xpending(K key,
K group)
Read pending messages from a stream for a
group. |
| Modifier and Type | Method and Description |
|---|---|
Executions<PendingMessages> |
NodeSelectionStreamCommands.xpending(K key,
K group)
Read pending messages from a stream for a
group. |
| Modifier and Type | Method and Description |
|---|---|
static PendingMessages |
PendingParser.parse(List<?> xpendingOutput)
Parse the output of the Redis XPENDING reporting a summary on pending messages.
|
Copyright © 2023 lettuce.io. All rights reserved.