Uses of Class
org.redisson.api.BatchOptions
-
Packages that use BatchOptions Package Description org.redisson org.redisson.api org.redisson.command org.redisson.reactive org.redisson.rx -
-
Uses of BatchOptions in org.redisson
Methods in org.redisson with parameters of type BatchOptions Modifier and Type Method Description RBatch
Redisson. createBatch(BatchOptions options)
RBatchReactive
RedissonReactive. createBatch(BatchOptions options)
RBatchRx
RedissonRx. createBatch(BatchOptions options)
Constructors in org.redisson with parameters of type BatchOptions Constructor Description RedissonBatch(EvictionScheduler evictionScheduler, CommandAsyncExecutor executor, BatchOptions options)
-
Uses of BatchOptions in org.redisson.api
Methods in org.redisson.api that return BatchOptions Modifier and Type Method 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.Methods in org.redisson.api with parameters of type BatchOptions Modifier and Type Method Description RBatch
RedissonClient. createBatch(BatchOptions options)
Creates batch object which could be executed later with collected group of commands in pipeline mode.RBatchReactive
RedissonReactiveClient. createBatch(BatchOptions options)
Return batch object which executes group of command in pipeline.RBatchRx
RedissonRxClient. createBatch(BatchOptions options)
Return batch object which executes group of command in pipeline. -
Uses of BatchOptions in org.redisson.command
Methods in org.redisson.command that return BatchOptions Modifier and Type Method Description BatchOptions
CommandBatchService. getOptions()
-
Uses of BatchOptions in org.redisson.reactive
Constructors in org.redisson.reactive with parameters of type BatchOptions Constructor Description CommandReactiveBatchService(ConnectionManager connectionManager, CommandReactiveExecutor commandExecutor, BatchOptions options)
RedissonBatchReactive(EvictionScheduler evictionScheduler, ConnectionManager connectionManager, CommandReactiveExecutor commandExecutor, BatchOptions options)
-
Uses of BatchOptions in org.redisson.rx
Constructors in org.redisson.rx with parameters of type BatchOptions Constructor Description CommandRxBatchService(ConnectionManager connectionManager, CommandAsyncExecutor executor, BatchOptions options)
RedissonBatchRx(EvictionScheduler evictionScheduler, ConnectionManager connectionManager, CommandRxExecutor commandExecutor, BatchOptions options)
-