Rabbit-R1/switch port/java/sources/io/sentry/util/thread/IMainThreadChecker.java

15 lines
304 B
Java
Raw Normal View History

2024-05-21 21:08:36 +00:00
package io.sentry.util.thread;
import io.sentry.protocol.SentryThread;
/* loaded from: classes3.dex */
public interface IMainThreadChecker {
boolean isMainThread();
boolean isMainThread(long j);
boolean isMainThread(SentryThread sentryThread);
boolean isMainThread(Thread thread);
}