mirror of
https://github.com/Pinball3D/Rabbit-R1.git
synced 2024-12-25 16:42:30 -06:00
35 lines
1.7 KiB
Java
35 lines
1.7 KiB
Java
|
package kotlinx.coroutines;
|
||
|
|
||
|
import java.util.concurrent.Future;
|
||
|
import kotlin.Metadata;
|
||
|
import kotlin.Unit;
|
||
|
|
||
|
/* compiled from: Future.kt */
|
||
|
@Metadata(d1 = {"\u0000$\n\u0002\u0018\u0002\n\u0002\u0018\u0002\n\u0000\n\u0002\u0018\u0002\n\u0002\b\u0002\n\u0002\u0010\u0002\n\u0000\n\u0002\u0010\u0003\n\u0000\n\u0002\u0010\u000e\n\u0000\b\u0002\u0018\u00002\u00020\u0001B\u0011\u0012\n\u0010\u0002\u001a\u0006\u0012\u0002\b\u00030\u0003¢\u0006\u0002\u0010\u0004J\u0013\u0010\u0005\u001a\u00020\u00062\b\u0010\u0007\u001a\u0004\u0018\u00010\bH\u0096\u0002J\b\u0010\t\u001a\u00020\nH\u0016R\u0012\u0010\u0002\u001a\u0006\u0012\u0002\b\u00030\u0003X\u0082\u0004¢\u0006\u0002\n\u0000¨\u0006\u000b"}, d2 = {"Lkotlinx/coroutines/CancelFutureOnCancel;", "Lkotlinx/coroutines/CancelHandler;", "future", "Ljava/util/concurrent/Future;", "(Ljava/util/concurrent/Future;)V", "invoke", "", "cause", "", "toString", "", "kotlinx-coroutines-core"}, k = 1, mv = {1, 8, 0}, xi = 48)
|
||
|
/* loaded from: classes3.dex */
|
||
|
final class CancelFutureOnCancel extends CancelHandler {
|
||
|
private final Future<?> future;
|
||
|
|
||
|
public CancelFutureOnCancel(Future<?> future) {
|
||
|
this.future = future;
|
||
|
}
|
||
|
|
||
|
@Override // kotlin.jvm.functions.Function1
|
||
|
public /* bridge */ /* synthetic */ Unit invoke(Throwable th) {
|
||
|
invoke2(th);
|
||
|
return Unit.INSTANCE;
|
||
|
}
|
||
|
|
||
|
@Override // kotlinx.coroutines.CancelHandlerBase
|
||
|
/* renamed from: invoke, reason: avoid collision after fix types in other method */
|
||
|
public void invoke2(Throwable cause) {
|
||
|
if (cause != null) {
|
||
|
this.future.cancel(false);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
public String toString() {
|
||
|
return "CancelFutureOnCancel[" + this.future + ']';
|
||
|
}
|
||
|
}
|