are there unbounded channels?
# coroutines
c
are there unbounded channels?
Copy code
when capacity is 0 – creates RendezvousChannel without a buffer;
when capacity is Channel.UNLIMITED – creates LinkedListChannel with buffer of unlimited size;
when capacity is Channel.CONFLATED – creates ConflatedChannel that conflates back-to-back sends;
when capacity is positive, but less than UNLIMITED – creates ArrayChannel with a buffer of the specified capacity;
otherwise – throws IllegalArgumentException.
c
perfect thanks, dunno why i missed that part