Uses of Interface
io.helidon.faulttolerance.FtHandler
-
Packages that use FtHandler Package Description io.helidon.faulttolerance Fault tolerance for Helidon SE reactive implementation.io.helidon.integrations.common.rest Common classes for accessing JSON based REST APIs of third party systems.io.helidon.integrations.vault Vault integration. -
-
Uses of FtHandler in io.helidon.faulttolerance
Subinterfaces of FtHandler in io.helidon.faulttolerance Modifier and Type Interface Description interface
Bulkhead
Bulkhead protects a resource that cannot serve unlimited parallel requests.interface
CircuitBreaker
CircuitBreaker protects a potentially failing endpoint from overloading and the application from spending resources on those endpoints.interface
Retry
Retry supports retry policies to be applied on an execution of asynchronous tasks.interface
Timeout
Timeout attempts to terminate execution after a duration time passes.Methods in io.helidon.faulttolerance that return FtHandler Modifier and Type Method Description FtHandler
FaultTolerance.Builder. build()
Methods in io.helidon.faulttolerance with parameters of type FtHandler Modifier and Type Method Description FaultTolerance.Builder
FaultTolerance.Builder. add(FtHandler ft)
FaultTolerance.TypedBuilder<T>
FaultTolerance.TypedBuilder. add(FtHandler ft)
-
Uses of FtHandler in io.helidon.integrations.common.rest
Methods in io.helidon.integrations.common.rest that return FtHandler Modifier and Type Method Description protected FtHandler
RestApi.Builder. ftHandler()
Configured Fault tolerance handler.protected FtHandler
RestApiBase. ftHandler()
Fault tolerance handler to use to invoke requests.Methods in io.helidon.integrations.common.rest with parameters of type FtHandler Modifier and Type Method Description B
RestApi.Builder. faultTolerance(FtHandler ftHandler)
Configure the fault tolerance handler to use with client requests. -
Uses of FtHandler in io.helidon.integrations.vault
Methods in io.helidon.integrations.vault that return FtHandler Modifier and Type Method Description FtHandler
Vault.Builder. ftHandler()
Methods in io.helidon.integrations.vault with parameters of type FtHandler Modifier and Type Method Description Vault.Builder
Vault.Builder. faultTolerance(FtHandler faultTolerance)
AnFtHandler
can be configured to be used by all calls to the Vault, to add support for retries, circuit breakers, bulkhead etc.
-