Rabbit-R1/switch port/java/sources/io/sentry/ISentryExecutorService.java

19 lines
521 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
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;
}