smol-rs / async-channel

Async multi-producer multi-consumer channel
Apache License 2.0
726 stars 38 forks source link

Cancel safety for channels #56

Closed GunnarMorrigan closed 1 year ago

GunnarMorrigan commented 1 year ago

Hi,

I would like to know if the Recv future is cancel safe. Such that it could be used in a select! Macro.

I read the other issue about a select! and know that a select can create some annoying issues.

Thank you!

notgull commented 1 year ago

The futures in this crate are cancel safe. Let me know if you have any other questions.