Add decompiled APK source code (JADX)

- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
This commit is contained in:
2026-02-18 14:52:23 -08:00
parent cc210a65ea
commit f9d20bb3fc
26991 changed files with 2541449 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
package com.mbridge.msdk.dycreator.bus;
import android.util.Log;
/* loaded from: classes4.dex */
final class BackgroundPoster implements Runnable {
private final PendingPostQueue a = new PendingPostQueue();
private volatile boolean b;
private final EventBus c;
public BackgroundPoster(EventBus eventBus) {
this.c = eventBus;
}
public final void enqueue(Subscription subscription, Object obj) {
PendingPost a = PendingPost.a(subscription, obj);
synchronized (this) {
try {
this.a.a(a);
if (!this.b) {
this.b = true;
EventBus.a.execute(this);
}
} catch (Throwable th) {
throw th;
}
}
}
@Override // java.lang.Runnable
public final void run() {
while (true) {
try {
try {
PendingPost a = this.a.a(1000);
if (a == null) {
synchronized (this) {
a = this.a.a();
if (a == null) {
this.b = false;
this.b = false;
return;
}
}
}
this.c.a(a);
} catch (InterruptedException e) {
Log.w("Event", Thread.currentThread().getName() + " was interruppted", e);
this.b = false;
return;
}
} catch (Throwable th) {
this.b = false;
throw th;
}
}
}
}