Package com.hazelcast.jet.retry
Class RetryStrategies
java.lang.Object
com.hazelcast.jet.retry.RetryStrategies
Collection of factory methods for creating the most frequently used
RetryStrategies
.- Since:
- Jet 4.3
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic final class
Builder for custom retry strategies. -
Method Summary
Modifier and TypeMethodDescriptionstatic RetryStrategies.Builder
custom()
Create a builder which can be used for setting up an arbitrarily complex strategy.static RetryStrategy
indefinitely
(long intervalMillis) Create a strategy which will retry failed actions indefinitely and will wait for a fixed amount of time between any two subsequent attempts.static RetryStrategy
never()
Create a strategy which will not retry a failed action.
-
Method Details
-
never
Create a strategy which will not retry a failed action. -
indefinitely
Create a strategy which will retry failed actions indefinitely and will wait for a fixed amount of time between any two subsequent attempts. -
custom
Create a builder which can be used for setting up an arbitrarily complex strategy.
-