- 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
20 lines
539 B
Java
20 lines
539 B
Java
package kotlinx.coroutines.channels;
|
|
|
|
import java.util.concurrent.CancellationException;
|
|
import kotlin.coroutines.Continuation;
|
|
|
|
/* loaded from: classes5.dex */
|
|
public interface ReceiveChannel {
|
|
void cancel(CancellationException cancellationException);
|
|
|
|
ChannelIterator iterator();
|
|
|
|
Object receive(Continuation continuation);
|
|
|
|
/* renamed from: receiveCatching-JP2dKIU */
|
|
Object mo4123receiveCatchingJP2dKIU(Continuation continuation);
|
|
|
|
/* renamed from: tryReceive-PtdJZtk */
|
|
Object mo4125tryReceivePtdJZtk();
|
|
}
|