- 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
29 lines
797 B
Java
29 lines
797 B
Java
package kotlinx.coroutines;
|
|
|
|
import kotlin.Unit;
|
|
import kotlin.jvm.functions.Function1;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class InvokeOnCancel extends CancelHandler {
|
|
public final Function1 handler;
|
|
|
|
@Override // kotlin.jvm.functions.Function1
|
|
public /* bridge */ /* synthetic */ Object invoke(Object obj) {
|
|
invoke((Throwable) obj);
|
|
return Unit.INSTANCE;
|
|
}
|
|
|
|
public InvokeOnCancel(Function1 function1) {
|
|
this.handler = function1;
|
|
}
|
|
|
|
@Override // kotlinx.coroutines.CancelHandlerBase
|
|
public void invoke(Throwable th) {
|
|
this.handler.invoke(th);
|
|
}
|
|
|
|
public String toString() {
|
|
return "InvokeOnCancel[" + DebugStringsKt.getClassSimpleName(this.handler) + '@' + DebugStringsKt.getHexAddress(this) + ']';
|
|
}
|
|
}
|