mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2025-01-09 13:43:22 +00:00
19 lines
521 B
Java
19 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;
|
||
|
}
|