Interface FutureScheduler

All Known Implementing Classes:
SingleThreadFutureScheduler

public interface FutureScheduler
Created by nonelse on 30.05.2018
  • Method Details

    • scheduleFuture

      ScheduledFuture<?> scheduleFuture(Runnable command, long millisecondDelay)
    • scheduleFutureWithFixedDelay

      ScheduledFuture<?> scheduleFutureWithFixedDelay(Runnable command, long initialMillisecondDelay, long millisecondDelay)
    • scheduleFutureWithReturn

      <V> ScheduledFuture<V> scheduleFutureWithReturn(Callable<V> callable, long millisecondDelay)
    • teardown

      void teardown()