All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.enigmabridge.retry.EBRetryJob Maven / Gradle / Ivy

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