Uses of Class
io.lettuce.core.XAddArgs
| 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 XAddArgs in io.lettuce.core
Methods in io.lettuce.core that return XAddArgs Modifier and Type Method Description XAddArgsXAddArgs. approximateTrimming()Apply efficient trimming for capped streams using the~flag.XAddArgsXAddArgs. approximateTrimming(boolean approximateTrimming)Apply efficient trimming for capped streams using the~flag.XAddArgsXAddArgs. exactTrimming()Apply exact trimming for capped streams using the=flag.XAddArgsXAddArgs. exactTrimming(boolean exactTrimming)Apply exact trimming for capped streams using the=flag.XAddArgsXAddArgs. id(String id)Specify the messageid.XAddArgsXAddArgs. limit(long limit)The maximum number of entries to trim.static XAddArgsXAddArgs.Builder. maxlen(long count)Creates newXAddArgsand setting MAXLEN.XAddArgsXAddArgs. maxlen(long maxlen)Limit stream tomaxlenentries.static XAddArgsXAddArgs.Builder. minId(String minid)Creates newXAddArgsand setting MINID.XAddArgsXAddArgs. minId(String minid)Limit stream entries by message Id.static XAddArgsXAddArgs.Builder. nomkstream()Creates newXAddArgsand setting NOMKSTREAM.XAddArgsXAddArgs. nomkstream()Do add the message if the stream does not already exist.XAddArgsXAddArgs. nomkstream(boolean nomkstream)Do add the message if the stream does not already exist.Methods in io.lettuce.core with parameters of type XAddArgs Modifier and Type Method Description RedisFuture<String>AbstractRedisAsyncCommands. xadd(K key, XAddArgs args, Object... keysAndValues)RedisFuture<String>AbstractRedisAsyncCommands. xadd(K key, XAddArgs args, Map<K,V> body)Mono<String>AbstractRedisReactiveCommands. xadd(K key, XAddArgs args, Object... keysAndValues)Mono<String>AbstractRedisReactiveCommands. xadd(K key, XAddArgs args, Map<K,V> body) -
Uses of XAddArgs in io.lettuce.core.api.async
Methods in io.lettuce.core.api.async with parameters of type XAddArgs Modifier and Type Method Description RedisFuture<String>RedisStreamAsyncCommands. xadd(K key, XAddArgs args, Object... keysAndValues)Append a message to the streamkey.RedisFuture<String>RedisStreamAsyncCommands. xadd(K key, XAddArgs args, Map<K,V> body)Append a message to the streamkey. -
Uses of XAddArgs in io.lettuce.core.api.reactive
Methods in io.lettuce.core.api.reactive with parameters of type XAddArgs Modifier and Type Method Description Mono<String>RedisStreamReactiveCommands. xadd(K key, XAddArgs args, Object... keysAndValues)Append a message to the streamkey.Mono<String>RedisStreamReactiveCommands. xadd(K key, XAddArgs args, Map<K,V> body)Append a message to the streamkey. -
Uses of XAddArgs in io.lettuce.core.api.sync
Methods in io.lettuce.core.api.sync with parameters of type XAddArgs Modifier and Type Method Description StringRedisStreamCommands. xadd(K key, XAddArgs args, Object... keysAndValues)Append a message to the streamkey.StringRedisStreamCommands. xadd(K key, XAddArgs args, Map<K,V> body)Append a message to the streamkey. -
Uses of XAddArgs in io.lettuce.core.cluster.api.async
Methods in io.lettuce.core.cluster.api.async with parameters of type XAddArgs Modifier and Type Method Description AsyncExecutions<String>NodeSelectionStreamAsyncCommands. xadd(K key, XAddArgs args, Object... keysAndValues)Append a message to the streamkey.AsyncExecutions<String>NodeSelectionStreamAsyncCommands. xadd(K key, XAddArgs args, Map<K,V> body)Append a message to the streamkey. -
Uses of XAddArgs in io.lettuce.core.cluster.api.sync
Methods in io.lettuce.core.cluster.api.sync with parameters of type XAddArgs Modifier and Type Method Description Executions<String>NodeSelectionStreamCommands. xadd(K key, XAddArgs args, Object... keysAndValues)Append a message to the streamkey.Executions<String>NodeSelectionStreamCommands. xadd(K key, XAddArgs args, Map<K,V> body)Append a message to the streamkey.