Package io.smallrye.faulttolerance.api
-
Interface Summary Interface Description CircuitBreakerMaintenance Allows reading current state of circuit breakers and reseting them to the initial (closed) state.CustomBackoffStrategy For each invocation of a method annotated@Retryand@CustomBackoff, an instance of custom backoff strategy is created and used for computing delays between individual retry attempts. -
Enum Summary Enum Description CircuitBreakerState -
Annotation Types Summary Annotation Type Description CircuitBreakerName A@CircuitBreakermethod can be annotated@CircuitBreakerNameto provide a name for the circuit breaker associated with the annotated method.CustomBackoff Modifies a@Retryannotation to use a custom backoff strategy instead of the default constant backoff.ExponentialBackoff Modifies a@Retryannotation to use exponential backoff instead of the default constant backoff.FibonacciBackoff Modifies a@Retryannotation to use Fibonacci backoff instead of the default constant backoff.