Didier Villevalois
08/22/2021, 12:27 PMSendChannel<E>.sendCatching(e: E): ChannelResult<Unit>
like there is a ReceiveChannel<E>.receiveCatching(): ChannelResult<E>
?louiscad
08/22/2021, 9:22 PMtrySend()
Didier Villevalois
08/22/2021, 10:09 PMreceive
, a receiveCatching
and a tryReceive
with different semantics and behavior. However, there is only a send
and a trySend
, but no sendCatching
. How is that? I would need a non-throwing and suspending version of send
.