Uses of Interface
dev.failsafe.Call
-
Packages that use Call Package Description dev.failsafe APIs for performing failsafe executions. -
-
Uses of Call in dev.failsafe
Classes in dev.failsafe that implement Call Modifier and Type Class Description (package private) classCallImpl<R>A call implementation that delegates to an execution.Methods in dev.failsafe that return Call Modifier and Type Method Description private <T> Call<T>FailsafeExecutor. callSync(ContextualSupplier<T,T> innerSupplier)Returns a Call that calls theinnerSuppliersynchronously, handling results according to the configured policies.Call<java.lang.Void>FailsafeExecutor. newCall(ContextualRunnable<java.lang.Void> runnable)Returns a call that can execute therunnableuntil a successful result is returned or the configured policies are exceeded.<T extends R>
Call<T>FailsafeExecutor. newCall(ContextualSupplier<T,T> supplier)Returns a call that can execute thesupplieruntil a successful result is returned or the configured policies are exceeded.
-