io.adtrace.sdk.scheduler.FutureScheduler Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of android-sdk Show documentation
Show all versions of android-sdk Show documentation
The AdTrace SDK for Android
package io.adtrace.sdk.scheduler;
import java.util.concurrent.Callable;
import java.util.concurrent.ScheduledFuture;
/**
* 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.
*/
public interface FutureScheduler {
ScheduledFuture> scheduleFuture(Runnable command, long millisecondDelay);
ScheduledFuture> scheduleFutureWithFixedDelay(Runnable command,
long initialMillisecondDelay,
long millisecondDelay);
ScheduledFuture scheduleFutureWithReturn(Callable callable, long millisecondDelay);
void teardown();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy