Uses of Interface
dev.failsafe.spi.ExecutionInternal
-
Packages that use ExecutionInternal Package Description dev.failsafe APIs for performing failsafe executions.dev.failsafe.spi The Failsafe Service Provider Interface (SPI). -
-
Uses of ExecutionInternal in dev.failsafe
Classes in dev.failsafe that implement ExecutionInternal Modifier and Type Class Description (package private) class
AsyncExecutionImpl<R>
AsyncExecution and AsyncExecutionInternal implementation.(package private) class
ExecutionImpl<R>
Execution and ExecutionInternal implementation.(package private) class
SyncExecutionImpl<R>
SyncExecution and SyncExecutionInternal implementation.Fields in dev.failsafe with type parameters of type ExecutionInternal Modifier and Type Field Description private java.util.concurrent.atomic.AtomicReference<ExecutionInternal<R>>
ExecutionImpl. latest
Methods in dev.failsafe that return ExecutionInternal Modifier and Type Method Description ExecutionInternal<R>
ExecutionImpl. getLatest()
-
Uses of ExecutionInternal in dev.failsafe.spi
Subinterfaces of ExecutionInternal in dev.failsafe.spi Modifier and Type Interface Description interface
AsyncExecutionInternal<R>
Internal async execution APIs.interface
SyncExecutionInternal<R>
Internal execution APIs.Fields in dev.failsafe.spi declared as ExecutionInternal Modifier and Type Field Description private ExecutionInternal<R>
FailsafeFuture. newestExecution
Methods in dev.failsafe.spi that return ExecutionInternal Modifier and Type Method Description ExecutionInternal<R>
ExecutionInternal. getLatest()
Returns the most recent execution to be attempted.Methods in dev.failsafe.spi with parameters of type ExecutionInternal Modifier and Type Method Description ExecutionResult<R>
PolicyExecutor. postExecute(ExecutionInternal<R> execution, ExecutionResult<R> result)
Performs synchronous post-execution handling for aresult
.void
FailsafeFuture. setExecution(ExecutionInternal<R> execution)
Sets theexecution
representing the most recent attempt, which will be cancelled if this future is cancelled.
-