Package io.adtrace.sdk.scheduler
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 Summary
Modifier and TypeMethodDescriptionscheduleFuture(Runnable command, long millisecondDelay) scheduleFutureWithFixedDelay(Runnable command, long initialMillisecondDelay, long millisecondDelay) <V> ScheduledFuture<V>scheduleFutureWithReturn(Callable<V> callable, long millisecondDelay) voidteardown()
-
Method Details
-
scheduleFuture
-
scheduleFutureWithFixedDelay
ScheduledFuture<?> scheduleFutureWithFixedDelay(Runnable command, long initialMillisecondDelay, long millisecondDelay) -
scheduleFutureWithReturn
-
teardown
void teardown()
-