Package io.adtrace.sdk.scheduler
Interface FutureScheduler
-
- All Known Implementing Classes:
SingleThreadFutureScheduler
public interface FutureSchedulerAdTrace 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 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)voidteardown()
-
-
-
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()
-
-