vaskir
06/16/2017, 8:15 AMoffer
would be the first thing I'd think about. I tried launch(parent-context) { ch.send(..) }
, but it's very slow.groostav
06/16/2017, 5:51 PMUNLIMITED
size that gives you a linked-list channel?vaskir
06/16/2017, 5:52 PMgroostav
06/16/2017, 6:23 PMHead
pointer, so my guess is that it acts as a circular buffer, meaning "removal" is probably just array[head] = null; head = head + 1 % size
vaskir
06/16/2017, 7:01 PM