- Added realracing3-community.apk (71.57 MB) - Removed 32-bit support (armeabi-v7a) - Only includes arm64-v8a libraries - Decompiled source code included - Added README-community.md with analysis
19 lines
610 B
Java
19 lines
610 B
Java
package com.helpshift.concurrency;
|
|
|
|
import android.os.Handler;
|
|
import android.os.Looper;
|
|
import com.helpshift.util.SafeWrappedRunnable;
|
|
|
|
/* loaded from: classes3.dex */
|
|
public class HSUIThreader implements HSThreader {
|
|
@Override // com.helpshift.concurrency.HSThreader
|
|
public void submit(Runnable runnable) {
|
|
SafeWrappedRunnable safeWrappedRunnable = new SafeWrappedRunnable(runnable);
|
|
if (Looper.myLooper() == Looper.getMainLooper()) {
|
|
safeWrappedRunnable.run();
|
|
} else {
|
|
new Handler(Looper.getMainLooper()).post(safeWrappedRunnable);
|
|
}
|
|
}
|
|
}
|