Join Slack
Powered by
if I create a buffered channel `val ch = Channel&l...
# coroutines
v
vaskir
06/16/2017, 7:47 AM
if I create a buffered channel
val ch = Channel<Int>(1_000_000)
then I expect
ch.offer(1)
to always return
true
, but it's not the case. Why?
Open in Slack
Previous
Next