Uses of Class
io.lettuce.core.XGroupCreateArgs
| 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 XGroupCreateArgs in io.lettuce.core
Methods in io.lettuce.core that return XGroupCreateArgs Modifier and Type Method Description static XGroupCreateArgsXGroupCreateArgs.Builder. mkstream()Creates newXGroupCreateArgsand setting MKSTREAM.static XGroupCreateArgsXGroupCreateArgs.Builder. mkstream(boolean mkstream)Creates newXGroupCreateArgsand setting MKSTREAM.XGroupCreateArgsXGroupCreateArgs. mkstream(boolean mkstream)Make a stream if it does not exists.Methods in io.lettuce.core with parameters of type XGroupCreateArgs Modifier and Type Method 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) -
Uses of XGroupCreateArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type XGroupCreateArgs Modifier and Type Method Description RedisFuture<String>RedisStreamAsyncCommands. xgroupCreate(XReadArgs.StreamOffset<K> streamOffset, K group, XGroupCreateArgs args)Create a consumer group. -
Uses of XGroupCreateArgs in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type XGroupCreateArgs Modifier and Type Method Description Mono<String>RedisStreamReactiveCommands. xgroupCreate(XReadArgs.StreamOffset<K> streamOffset, K group, XGroupCreateArgs args)Create a consumer group. -
Uses of XGroupCreateArgs in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type XGroupCreateArgs Modifier and Type Method Description StringRedisStreamCommands. xgroupCreate(XReadArgs.StreamOffset<K> streamOffset, K group, XGroupCreateArgs args)Create a consumer group. -
Uses of XGroupCreateArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type XGroupCreateArgs Modifier and Type Method Description AsyncExecutions<String>NodeSelectionStreamAsyncCommands. xgroupCreate(XReadArgs.StreamOffset<K> streamOffset, K group, XGroupCreateArgs args)Create a consumer group. -
Uses of XGroupCreateArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type XGroupCreateArgs Modifier and Type Method Description Executions<String>NodeSelectionStreamCommands. xgroupCreate(XReadArgs.StreamOffset<K> streamOffset, K group, XGroupCreateArgs args)Create a consumer group.