Uses of Interface
org.redisson.api.LockOptions.BackOff
-
Packages that use LockOptions.BackOff Package Description org.redisson org.redisson.api -
-
Uses of LockOptions.BackOff in org.redisson
Fields in org.redisson declared as LockOptions.BackOff Modifier and Type Field Description protected LockOptions.BackOff
RedissonSpinLock. backOff
Methods in org.redisson with parameters of type LockOptions.BackOff Modifier and Type Method Description RLock
Redisson. getSpinLock(String name, LockOptions.BackOff backOff)
RLockReactive
RedissonReactive. getSpinLock(String name, LockOptions.BackOff backOff)
RLockRx
RedissonRx. getSpinLock(String name, LockOptions.BackOff backOff)
Constructors in org.redisson with parameters of type LockOptions.BackOff Constructor Description RedissonSpinLock(CommandAsyncExecutor commandExecutor, String name, LockOptions.BackOff backOff)
-
Uses of LockOptions.BackOff in org.redisson.api
Classes in org.redisson.api that implement LockOptions.BackOff Modifier and Type Class Description static class
LockOptions.ConstantBackOff
Back off algorithm, where sleep period is constant and is defined by LockOptions.ConstantBackOff.delay.static class
LockOptions.ExponentialBackOff
Back off algorithm, where sleep period starts with LockOptions.ExponentialBackOff.initialDelay, each time increases LockOptions.ExponentialBackOff.multiplier times but doesn't exceed LockOptions.ExponentialBackOff.maxDelayMethods in org.redisson.api that return LockOptions.BackOff Modifier and Type Method Description static LockOptions.BackOff
LockOptions. defaults()
Creates a new instance of ExponentialBackOffOptions with default options.Methods in org.redisson.api with parameters of type LockOptions.BackOff Modifier and Type Method Description RLock
RedissonClient. getSpinLock(String name, LockOptions.BackOff backOff)
Returns Spin lock instance by name with specified back off options.RLockReactive
RedissonReactiveClient. getSpinLock(String name, LockOptions.BackOff backOff)
Returns Spin lock instance by name with specified back off options.RLockRx
RedissonRxClient. getSpinLock(String name, LockOptions.BackOff backOff)
Returns Spin lock instance by name with specified back off options.
-