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

com.outbrain.ob1k.concurrent.Scheduler Maven / Gradle / Ivy

package com.outbrain.ob1k.concurrent;


import java.util.concurrent.TimeUnit;

/**
 * Created by aronen on 1/8/15.
 *
 * a ComposableFuture based scheduler.
 */
public interface Scheduler {
  CancellationToken schedule(final Runnable task, final long delay, final TimeUnit timeUnit);
  void shutdown();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy