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

14 lines
304 B
Java

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