Interface | Description |
---|---|
RetryableOperation<T> |
An operation that can be retried via
OperationRetryer |
RetryableResult<T> |
Implementation of this interface is returned by the operation being retired
to control next step in
OperationRetryer . |
Class | Description |
---|---|
ImmutableSet<T> |
An explicit wrapper around
Collections.unmodifiableSet(Set) . |
OperationRetryer<T> |
A helper class that retries a given operation up to the denoted max retry
Duration . |
RetryableResult.Failure<T> |
An instance of this Class is returned by
RetryableOperation to indicate
that the operation should no longer be retried. |
RetryableResult.Incomplete<T> |
An instance of this Class is returned by
RetryableOperation to indicate
that the operation should be retried. |
RetryableResult.Success<T> |
An instance of this Class is returned by
RetryableOperation to indicate
successful completion of a RetryableOperation . |
TableGenerator |
A general purpose tabular format output generator.
|