frankelot
11/29/2021, 7:01 PMactor
of buffer 1 that DROPS_OLD when the buffer is overflown. I’ve read the docs but I’m not sure I get it
Is this it?
actor<Int>(capacity = Channel.CONFLATED)
frankelot
11/29/2021, 7:01 PMRequests a conflated channel in the Channel(...) factory function. This is a shortcut to creating a channel with onBufferOverflow = DROP_OLDEST.What I don’t get from that is… how big is the buffer to begin with
frankelot
11/30/2021, 2:33 PM