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(); }