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.BackOffRedissonSpinLock. backOffMethods in org.redisson with parameters of type LockOptions.BackOff Modifier and Type Method Description RLockRedisson. getSpinLock(String name, LockOptions.BackOff backOff)RLockReactiveRedissonReactive. getSpinLock(String name, LockOptions.BackOff backOff)RLockRxRedissonRx. 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 classLockOptions.ConstantBackOffBack off algorithm, where sleep period is constant and is defined by LockOptions.ConstantBackOff.delay.static classLockOptions.ExponentialBackOffBack 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.BackOffLockOptions. 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 RLockRedissonClient. getSpinLock(String name, LockOptions.BackOff backOff)Returns Spin lock instance by name with specified back off options.RLockReactiveRedissonReactiveClient. getSpinLock(String name, LockOptions.BackOff backOff)Returns Spin lock instance by name with specified back off options.RLockRxRedissonRxClient. getSpinLock(String name, LockOptions.BackOff backOff)Returns Spin lock instance by name with specified back off options.
-