| 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 XGroupCreateArgs |
XGroupCreateArgs.Builder.mkstream()
Creates new
XGroupCreateArgs and setting MKSTREAM. |
XGroupCreateArgs |
XGroupCreateArgs.mkstream(boolean mkstream)
Make a stream if it does not exists.
|
static XGroupCreateArgs |
XGroupCreateArgs.Builder.mkstream(boolean mkstream)
Creates new
XGroupCreateArgs and setting MKSTREAM. |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<String> |
AbstractRedisAsyncCommands.xgroupCreate(XReadArgs.StreamOffset<K> offset,
K group,
XGroupCreateArgs args) |
Mono<String> |
AbstractRedisReactiveCommands.xgroupCreate(XReadArgs.StreamOffset<K> streamOffset,
K group,
XGroupCreateArgs args) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<String> |
RedisStreamAsyncCommands.xgroupCreate(XReadArgs.StreamOffset<K> streamOffset,
K group,
XGroupCreateArgs args)
Create a consumer group.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<String> |
RedisStreamReactiveCommands.xgroupCreate(XReadArgs.StreamOffset<K> streamOffset,
K group,
XGroupCreateArgs args)
Create a consumer group.
|
| Modifier and Type | Method and Description |
|---|---|
String |
RedisStreamCommands.xgroupCreate(XReadArgs.StreamOffset<K> streamOffset,
K group,
XGroupCreateArgs args)
Create a consumer group.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<String> |
NodeSelectionStreamAsyncCommands.xgroupCreate(XReadArgs.StreamOffset<K> streamOffset,
K group,
XGroupCreateArgs args)
Create a consumer group.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<String> |
NodeSelectionStreamCommands.xgroupCreate(XReadArgs.StreamOffset<K> streamOffset,
K group,
XGroupCreateArgs args)
Create a consumer group.
|
Copyright © 2021 lettuce.io. All rights reserved.