Closed
Description
We currently have two different methods of inter-task communication. This issue is a reminder to deprecate the produce
/ consume
API and have that similar functionality supported by implementing support for Channel(0)
, i.e., put!
on a channel backed by by a 0-sized buffer will block till the time a matching take!
is called.
Edit : Unbuffered channels, i.e., Channel(0)
have been implemented.