- 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
22 lines
515 B
Java
22 lines
515 B
Java
package kotlinx.coroutines;
|
|
|
|
import java.util.concurrent.Future;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public final class DisposableFutureHandle implements DisposableHandle {
|
|
public final Future future;
|
|
|
|
public DisposableFutureHandle(Future future) {
|
|
this.future = future;
|
|
}
|
|
|
|
@Override // kotlinx.coroutines.DisposableHandle
|
|
public void dispose() {
|
|
this.future.cancel(false);
|
|
}
|
|
|
|
public String toString() {
|
|
return "DisposableFutureHandle[" + this.future + ']';
|
|
}
|
|
}
|