Package | Description |
---|---|
org.redisson | |
org.redisson.api | |
org.redisson.command | |
org.redisson.reactive | |
org.redisson.rx |
Modifier and Type | Method and Description |
---|---|
RBatchRx |
RedissonRx.createBatch(BatchOptions options) |
RBatchReactive |
RedissonReactive.createBatch(BatchOptions options) |
RBatch |
Redisson.createBatch(BatchOptions options) |
Constructor and Description |
---|
RedissonBatch(EvictionScheduler evictionScheduler,
ConnectionManager connectionManager,
BatchOptions options) |
Modifier and Type | Method and Description |
---|---|
static BatchOptions |
BatchOptions.defaults() |
BatchOptions |
BatchOptions.executionMode(BatchOptions.ExecutionMode executionMode)
Sets execution mode.
|
BatchOptions |
BatchOptions.responseTimeout(long timeout,
TimeUnit unit)
Defines timeout for Redis response.
|
BatchOptions |
BatchOptions.retryAttempts(int retryAttempts)
Defines attempts amount to send Redis commands batch
if it hasn't been sent already.
|
BatchOptions |
BatchOptions.retryInterval(long retryInterval,
TimeUnit retryIntervalUnit)
Defines time interval for each attempt to send Redis commands batch
if it hasn't been sent already.
|
BatchOptions |
BatchOptions.skipResult()
Inform Redis not to send reply.
|
BatchOptions |
BatchOptions.syncSlaves(int slaves,
long timeout,
TimeUnit unit)
Synchronize write operations execution within defined timeout
across specified amount of Redis slave nodes.
|
Modifier and Type | Method and Description |
---|---|
RBatchRx |
RedissonRxClient.createBatch(BatchOptions options)
Return batch object which executes group of
command in pipeline.
|
RBatchReactive |
RedissonReactiveClient.createBatch(BatchOptions options)
Return batch object which executes group of
command in pipeline.
|
RBatch |
RedissonClient.createBatch(BatchOptions options)
Creates batch object which could be executed later
with collected group of commands in pipeline mode.
|
Modifier and Type | Method and Description |
---|---|
BatchOptions |
CommandBatchService.getOptions() |
Constructor and Description |
---|
CommandReactiveBatchService(ConnectionManager connectionManager,
BatchOptions options) |
RedissonBatchReactive(EvictionScheduler evictionScheduler,
ConnectionManager connectionManager,
CommandReactiveService commandExecutor,
BatchOptions options) |
Constructor and Description |
---|
CommandRxBatchService(ConnectionManager connectionManager,
BatchOptions options) |
RedissonBatchRx(EvictionScheduler evictionScheduler,
ConnectionManager connectionManager,
CommandRxExecutor commandExecutor,
BatchOptions options) |
Copyright © 2014–2020 Redisson. All rights reserved.