| 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.
|
| Modifier and Type | Method and Description |
|---|---|
static StreamDeletionPolicy |
StreamDeletionPolicy.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StreamDeletionPolicy[] |
StreamDeletionPolicy.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
| Modifier and Type | Method and Description |
|---|---|
XTrimArgs |
XTrimArgs.trimmingMode(StreamDeletionPolicy trimmingMode)
Defines desired behaviour for handling consumer group references during trimming.
|
XAddArgs |
XAddArgs.trimmingMode(StreamDeletionPolicy trimmingMode)
When trimming, defines desired behaviour for handling consumer group references.
|
Flux<StreamEntryDeletionResult> |
AbstractRedisReactiveCommands.xackdel(K key,
K group,
StreamDeletionPolicy policy,
String... messageIds) |
RedisFuture<List<StreamEntryDeletionResult>> |
AbstractRedisAsyncCommands.xackdel(K key,
K group,
StreamDeletionPolicy policy,
String... messageIds) |
Flux<StreamEntryDeletionResult> |
AbstractRedisReactiveCommands.xdelex(K key,
StreamDeletionPolicy policy,
String... messageIds) |
RedisFuture<List<StreamEntryDeletionResult>> |
AbstractRedisAsyncCommands.xdelex(K key,
StreamDeletionPolicy policy,
String... messageIds) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<List<StreamEntryDeletionResult>> |
RedisStreamAsyncCommands.xackdel(K key,
K group,
StreamDeletionPolicy policy,
String... messageIds)
Acknowledge and delete one or more messages from the stream and consumer group with a specific deletion policy.
|
RedisFuture<List<StreamEntryDeletionResult>> |
RedisStreamAsyncCommands.xdelex(K key,
StreamDeletionPolicy policy,
String... messageIds)
Extended delete operation that removes the specified entries from the stream with a specific deletion policy and returns
detailed results for each message ID indicating whether it was deleted, not found, or not deleted due to acknowledgment
status.
|
| Modifier and Type | Method and Description |
|---|---|
Flux<StreamEntryDeletionResult> |
RedisStreamReactiveCommands.xackdel(K key,
K group,
StreamDeletionPolicy policy,
String... messageIds)
Acknowledge and delete one or more messages from the stream and consumer group with a specific deletion policy.
|
Flux<StreamEntryDeletionResult> |
RedisStreamReactiveCommands.xdelex(K key,
StreamDeletionPolicy policy,
String... messageIds)
Extended delete operation that removes the specified entries from the stream with a specific deletion policy and returns
detailed results for each message ID indicating whether it was deleted, not found, or not deleted due to acknowledgment
status.
|
| Modifier and Type | Method and Description |
|---|---|
List<StreamEntryDeletionResult> |
RedisStreamCommands.xackdel(K key,
K group,
StreamDeletionPolicy policy,
String... messageIds)
Acknowledge and delete one or more messages from the stream and consumer group with a specific deletion policy.
|
List<StreamEntryDeletionResult> |
RedisStreamCommands.xdelex(K key,
StreamDeletionPolicy policy,
String... messageIds)
Extended delete operation that removes the specified entries from the stream with a specific deletion policy and returns
detailed results for each message ID indicating whether it was deleted, not found, or not deleted due to acknowledgment
status.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<List<StreamEntryDeletionResult>> |
NodeSelectionStreamAsyncCommands.xackdel(K key,
K group,
StreamDeletionPolicy policy,
String... messageIds)
Acknowledge and delete one or more messages from the stream and consumer group with a specific deletion policy.
|
AsyncExecutions<List<StreamEntryDeletionResult>> |
NodeSelectionStreamAsyncCommands.xdelex(K key,
StreamDeletionPolicy policy,
String... messageIds)
Extended delete operation that removes the specified entries from the stream with a specific deletion policy and returns
detailed results for each message ID indicating whether it was deleted, not found, or not deleted due to acknowledgment
status.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<List<StreamEntryDeletionResult>> |
NodeSelectionStreamCommands.xackdel(K key,
K group,
StreamDeletionPolicy policy,
String... messageIds)
Acknowledge and delete one or more messages from the stream and consumer group with a specific deletion policy.
|
Executions<List<StreamEntryDeletionResult>> |
NodeSelectionStreamCommands.xdelex(K key,
StreamDeletionPolicy policy,
String... messageIds)
Extended delete operation that removes the specified entries from the stream with a specific deletion policy and returns
detailed results for each message ID indicating whether it was deleted, not found, or not deleted due to acknowledgment
status.
|
Copyright © 2025 lettuce.io. All rights reserved.