Uses of Interface
org.redisson.config.DelayStrategy
Packages that use DelayStrategy
Package
Description
-
Uses of DelayStrategy in org.redisson.api
Methods in org.redisson.api that return DelayStrategyMethods in org.redisson.api with parameters of type DelayStrategy -
Uses of DelayStrategy in org.redisson.api.options
Methods in org.redisson.api.options that return DelayStrategyMethods in org.redisson.api.options with parameters of type DelayStrategyModifier and TypeMethodDescriptionInvocationOptions.retryDelay(DelayStrategy delayStrategy) Defines the delay strategy for a new attempt to send a command. -
Uses of DelayStrategy in org.redisson.client
Methods in org.redisson.client that return DelayStrategyMethods in org.redisson.client with parameters of type DelayStrategyModifier and TypeMethodDescription<T,R> RFuture <R> RedisConnection.async(int retryAttempts, DelayStrategy delayStrategy, long timeout, Codec codec, RedisCommand<T> command, Object... params) RedisClientConfig.setReconnectionDelay(DelayStrategy reconnectionDelay) -
Uses of DelayStrategy in org.redisson.command
Constructors in org.redisson.command with parameters of type DelayStrategyModifierConstructorDescriptionRedisExecutor(boolean readOnlyMode, NodeSource source, Codec codec, RedisCommand<V> command, Object[] params, CompletableFuture<R> mainPromise, boolean ignoreRedirect, ConnectionManager connectionManager, RedissonObjectBuilder objectBuilder, RedissonObjectBuilder.ReferenceType referenceType, boolean noRetry, int retryAttempts, DelayStrategy retryStrategy, int responseTimeout, boolean trackChanges) -
Uses of DelayStrategy in org.redisson.config
Classes in org.redisson.config that implement DelayStrategyModifier and TypeClassDescriptionclassA constant delay strategy that returns the same delay duration for every retry attempt.classDecorrelated jitter strategy that increases delay exponentially while introducing randomness influenced by the previous backoff duration.classEqual jitter strategy that introduces moderate randomness while maintaining some stability of delay value.classFull jitter strategy that applies complete randomization to the exponential backoff delay.Methods in org.redisson.config that return DelayStrategyMethods in org.redisson.config with parameters of type DelayStrategyModifier and TypeMethodDescriptionBaseConfig.setReconnectionDelay(DelayStrategy reconnectionDelay) Defines the delay strategy for a new attempt to reconnect a connection.BaseConfig.setRetryDelay(DelayStrategy retryDelay) Defines the delay strategy for a new attempt to send a command.