```I/System.out: RendezvousChannel@6d58005{Receive...
# coroutines
m
Copy code
I/System.out: RendezvousChannel@6d58005{ReceiveQueued,queueSize=4}
can anyone elaborate what
queueSize
means?
g
Every channel based on non-blocking queue that used to process all channel events like offer, send, close etc without blocking
m
this means? what is queueSize then?
g
This is size of internal event queue of channel, it means there are 4 unprocessed events in queue It may mean nothing without additional context
m
but what is an
event
in a rendezvous channel without any buffer? 🤔