You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A difference between zero capacity and one capacity bounded channel is that call try_send() return OK only when there is already receiver wait on it. And this is useful is somecase.
Golang and crossbeam-channel both have zero capacity bounded channel, maybe we should support it.
The text was updated successfully, but these errors were encountered:
Adding a rendezvous channel inside of the current implementation would add some level of complexity to the implementation. I'd like to avoid that if necessary.
I'd be happy to add rendezvous channel functionality to this crate, but I'd have to see the implementation first.
A difference between zero capacity and one capacity bounded channel is that call try_send() return OK only when there is already receiver wait on it. And this is useful is somecase.
Golang and crossbeam-channel both have zero capacity bounded channel, maybe we should support it.
The text was updated successfully, but these errors were encountered: