yruslan / channel_scala

Scala implementation of the concurrency primitive similar to GoLang channels.
Apache License 2.0
8 stars 0 forks source link

Unbounded channels #10

Closed yruslan closed 2 years ago

yruslan commented 2 years ago

Background

GoLang has synchronous channels and buffered channels with a limited buffer capacity.

But for some use cases unbounded buffered channels could be useful.

Feature

Implement unbounded buffered channels.