Interface | Description |
---|---|
BackOff |
Back-off policy when retrying an operation.
|
EBCallback<Result,Error> |
Simple callback interface for job to signalize its success or fail.
|
EBFuture<Result,Error> |
Future object, similar to
Future
Used in async job invocations. |
EBRetryJob<Result,Error> |
Simple job - subject to retry mechanism.
|
EBRetryListener<Result,Error> |
Listener for Retry mechanism to listen for job retry status.
|
EBRetryStrategy |
EB retry strategy interface.
|
Class | Description |
---|---|
EBRetry<Result,Error> |
Very simple base retry implementation.
|
EBRetry.WaitThread |
Simple notify me in thread.
|
EBRetryJobError<Error> |
Wrapper for the job error.
|
EBRetryJobErrorThr |
Job error if error = throwable.
|
EBRetryJobSimple<Result,Error> |
Simple retry job implementation.
|
EBRetryJobSimpleSafe<Result,Error> |
Simple retry job implementation.
|
EBRetryJobSimpleSafeThrErr<Result> |
Retry Job implementation with job error = Throwable.
|
EBRetryStrategyBackoff |
Implementation of
BackOff that increases the back off period for each retry attempt using
a randomization function that grows exponentially. |
EBRetryStrategyBackoff.Builder |
Builder for
EBRetryStrategyBackoff . |
EBRetryStrategyFactory |
Construct retry strategy from serialized data.
|
EBRetryStrategySimple |
Simple retry strategy, with threshold, no waiting.
|
EBUtils |
Created by dusanklinec on 15.08.16.
|
Exception | Description |
---|---|
EBRetryAbortedException |
Retry exception - retry mechanism aborted, typically with fatal error.
|
EBRetryCancelledException |
Retry exception - retry mechanism was cancelled.
|
EBRetryException |
Root exception for all retry based exceptions.
|
EBRetryFailedException |
Exception thrown when calling sync job.
|
EBRetryJobException |
General exception used as a cause that job failed, if there is no other exception cause.
|
Copyright © 2016. All rights reserved.