
com.enigmabridge.retry.EBRetryJob Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of retry Show documentation
Show all versions of retry Show documentation
Simple retry mechanism (backoff)
The newest version!
package com.enigmabridge.retry;
/**
* Simple job - subject to retry mechanism.
*
* Created by dusanklinec on 21.07.16.
*/
public interface EBRetryJob {
/**
* Executes the function.
* Should be re-entrant, called multiple times, if previous attempt failed.
*
* @param callback callback to call
*/
void runAsync(EBCallback callback);
/**
* On retry signal to the job.
*/
void onRetry(EBRetry retry);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy