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

io.paradoxical.cassieq.model.time.Scheduler Maven / Gradle / Ivy

package io.paradoxical.cassieq.model.time;

import java.util.concurrent.ScheduledFuture;
import java.util.concurrent.TimeUnit;

public interface Scheduler {
    /**
     * Schedule with a delay. Wait for the runnable to complete, then wait the duration and schedule again
     *
     * @param runnable
     * @param delay
     * @param duration
     * @param unit
     * @return
     */
    ScheduledFuture periodicWithDelay(Runnable runnable, long delay, long duration, TimeUnit unit);

    ScheduledFuture scheduleOnce(Runnable runnableFuture, long duration, TimeUnit unit);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy