Interface FutureScheduler

All Known Implementing Classes:
SingleThreadFutureScheduler

public interface FutureScheduler
AdTrace android SDK (https://adtrace.io) Created by Nasser Amini (github.com/namini40) on April 2022. Notice: See LICENSE.txt for modification and distribution information Copyright © 2022.
  • 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()