Interface FutureScheduler

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      java.util.concurrent.ScheduledFuture<?> scheduleFuture​(java.lang.Runnable command, long millisecondDelay)  
      java.util.concurrent.ScheduledFuture<?> scheduleFutureWithFixedDelay​(java.lang.Runnable command, long initialMillisecondDelay, long millisecondDelay)  
      <V> java.util.concurrent.ScheduledFuture<V> scheduleFutureWithReturn​(java.util.concurrent.Callable<V> callable, long millisecondDelay)  
      void teardown()  
    • Method Detail

      • scheduleFuture

        java.util.concurrent.ScheduledFuture<?> scheduleFuture​(java.lang.Runnable command,
                                                               long millisecondDelay)
      • scheduleFutureWithFixedDelay

        java.util.concurrent.ScheduledFuture<?> scheduleFutureWithFixedDelay​(java.lang.Runnable command,
                                                                             long initialMillisecondDelay,
                                                                             long millisecondDelay)
      • scheduleFutureWithReturn

        <V> java.util.concurrent.ScheduledFuture<V> scheduleFutureWithReturn​(java.util.concurrent.Callable<V> callable,
                                                                             long millisecondDelay)
      • teardown

        void teardown()