Uses of Interface
dev.failsafe.Call

Packages that use Call
Package
Description
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) class 
    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 the innerSupplier synchronously, handling results according to the configured policies.
    FailsafeExecutor.newCall(ContextualRunnable<Void> runnable)
    Returns a call that can execute the runnable until 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 the supplier until a successful result is returned or the configured policies are exceeded.