public interface AsyncRetrySupervisor extends AutoCloseable
This class is internally used in RetrySphereClientDecorator:
public class RetryBadGatewayExample {
public static SphereClient ofRetry(final SphereClient delegate) {
final int maxAttempts = 5;
final List<RetryRule> retryRules = singletonList(RetryRule.of(
RetryPredicate.ofMatchingStatusCodes(BAD_GATEWAY_502, SERVICE_UNAVAILABLE_503, GATEWAY_TIMEOUT_504),
RetryAction.ofScheduledRetry(maxAttempts, context -> Duration.ofSeconds(context.getAttempt() * 2)))
);
return RetrySphereClientDecorator.of(delegate, retryRules);
}
}
See the test code.
Modifier and Type | Method and Description |
---|---|
void |
close() |
static AsyncRetrySupervisor |
of(List<RetryRule> retryRules) |
<P,R> CompletionStage<R> |
supervise(AutoCloseable service,
Function<P,CompletionStage<R>> f,
P parameterObject) |
<P,R> CompletionStage<R> supervise(AutoCloseable service, Function<P,CompletionStage<R>> f, @Nullable P parameterObject)
void close()
close
in interface AutoCloseable
static AsyncRetrySupervisor of(List<RetryRule> retryRules)