26 lines
657 B
Java
26 lines
657 B
Java
package org.greenrobot.eventbus;
|
|
|
|
/* loaded from: classes2.dex */
|
|
class AsyncPoster implements Runnable {
|
|
private final PendingPostQueue a = new PendingPostQueue();
|
|
private final EventBus b;
|
|
|
|
AsyncPoster(EventBus eventBus) {
|
|
this.b = eventBus;
|
|
}
|
|
|
|
public void a(Subscription subscription, Object obj) {
|
|
this.a.a(PendingPost.a(subscription, obj));
|
|
this.b.a().execute(this);
|
|
}
|
|
|
|
@Override // java.lang.Runnable
|
|
public void run() {
|
|
PendingPost a = this.a.a();
|
|
if (a == null) {
|
|
throw new IllegalStateException("No pending post available");
|
|
}
|
|
this.b.a(a);
|
|
}
|
|
}
|