27 lines
705 B
Java
27 lines
705 B
Java
package io.reactivex.internal.util;
|
|
|
|
import io.reactivex.functions.Action;
|
|
import io.reactivex.functions.Consumer;
|
|
import java.util.concurrent.CountDownLatch;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public final class BlockingIgnoringReceiver extends CountDownLatch implements Consumer<Throwable>, Action {
|
|
public Throwable a;
|
|
|
|
public BlockingIgnoringReceiver() {
|
|
super(1);
|
|
}
|
|
|
|
@Override // io.reactivex.functions.Consumer
|
|
/* renamed from: a, reason: merged with bridge method [inline-methods] */
|
|
public void accept(Throwable th) {
|
|
this.a = th;
|
|
countDown();
|
|
}
|
|
|
|
@Override // io.reactivex.functions.Action
|
|
public void run() {
|
|
countDown();
|
|
}
|
|
}
|