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

com.github.ltsopensource.jobtracker.complete.retry.DefaultJobRetryTimeGenerator Maven / Gradle / Ivy

package com.github.ltsopensource.jobtracker.complete.retry;

import com.github.ltsopensource.core.domain.Job;
import com.github.ltsopensource.core.support.SystemClock;

/**
 * @author Robert HG ([email protected]) on 6/28/16.
 */
public class DefaultJobRetryTimeGenerator implements JobRetryTimeGenerator {

    @Override
    public long getNextRetryTriggerTime(Job job, int retryTimes, int retryInterval) {
        return SystemClock.now() + retryInterval;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy