mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
18 lines
521 B
Java
18 lines
521 B
Java
package io.sentry;
|
|
|
|
import java.util.concurrent.Callable;
|
|
import java.util.concurrent.Future;
|
|
import java.util.concurrent.RejectedExecutionException;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public interface ISentryExecutorService {
|
|
void close(long j);
|
|
|
|
boolean isClosed();
|
|
|
|
Future<?> schedule(Runnable runnable, long j) throws RejectedExecutionException;
|
|
|
|
Future<?> submit(Runnable runnable) throws RejectedExecutionException;
|
|
|
|
<T> Future<T> submit(Callable<T> callable) throws RejectedExecutionException;
|
|
}
|