discord-jadx/app/src/main/java/com/adjust/sdk/scheduler/FutureScheduler.java

14 lines
417 B
Java
Raw Normal View History

2021-06-27 20:44:35 +00:00
package com.adjust.sdk.scheduler;
import java.util.concurrent.Callable;
import java.util.concurrent.ScheduledFuture;
public interface FutureScheduler {
ScheduledFuture<?> scheduleFuture(Runnable runnable, long j);
ScheduledFuture<?> scheduleFutureWithFixedDelay(Runnable runnable, long j, long j2);
<V> ScheduledFuture<V> scheduleFutureWithReturn(Callable<V> callable, long j);
void teardown();
}