Uses of Interface
com.rabbitmq.stream.BackOffDelayPolicy
-
Packages that use BackOffDelayPolicy Package Description com.rabbitmq.stream Main API for RabbitMQ Stream Java Client.com.rabbitmq.stream.impl Implementation-specific, non-public interfaces and classes of the RabbitMQ Stream Java Client. -
-
Uses of BackOffDelayPolicy in com.rabbitmq.stream
Classes in com.rabbitmq.stream that implement BackOffDelayPolicy Modifier and Type Class Description static class
BackOffDelayPolicy.FixedWithInitialDelayAndTimeoutBackOffPolicy
static class
BackOffDelayPolicy.FixedWithInitialDelayBackOffPolicy
Methods in com.rabbitmq.stream that return BackOffDelayPolicy Modifier and Type Method Description static BackOffDelayPolicy
BackOffDelayPolicy. fixed(Duration delay)
A policy with a constant delay.static BackOffDelayPolicy
BackOffDelayPolicy. fixedWithInitialDelay(Duration initialDelay, Duration delay)
A policy with a first delay and then a constant delay.static BackOffDelayPolicy
BackOffDelayPolicy. fixedWithInitialDelay(Duration initialDelay, Duration delay, Duration timeout)
A policy with a first delay, then a constant delay until a timeout is reached.Methods in com.rabbitmq.stream with parameters of type BackOffDelayPolicy Modifier and Type Method Description EnvironmentBuilder
EnvironmentBuilder. recoveryBackOffDelayPolicy(BackOffDelayPolicy recoveryBackOffDelayPolicy)
TheBackOffDelayPolicy
to use for connection recovery.EnvironmentBuilder
EnvironmentBuilder. topologyUpdateBackOffDelayPolicy(BackOffDelayPolicy topologyUpdateBackOffDelayPolicy)
TheBackOffDelayPolicy
to use for topology recovery. -
Uses of BackOffDelayPolicy in com.rabbitmq.stream.impl
Methods in com.rabbitmq.stream.impl with parameters of type BackOffDelayPolicy Modifier and Type Method Description EnvironmentBuilder
StreamEnvironmentBuilder. recoveryBackOffDelayPolicy(BackOffDelayPolicy recoveryBackOffDelayPolicy)
EnvironmentBuilder
StreamEnvironmentBuilder. topologyUpdateBackOffDelayPolicy(BackOffDelayPolicy topologyUpdateBackOffDelayPolicy)
-