Rabbit-R1/switch port/java/sources/io/sentry/ISentryExecutorService.java
2024-05-21 17:08:36 -04:00

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;
}