Could someone explain what closing a kotlinx.coroutines channel using channel.close()
does and what the negative effect of not manually closing channels would be? I’ve looked at the documentation and the source code and I’m having some trouble understanding. If I don’t manually close a channel will there be some unnecessary processing? Will there be a reference to the channel somewhere that prevents it from being GCd? Or does the close function just exist as a way of informing potential users of the channel that it can no longer be used.
I’ve reposted your question to StackOverflow and answered there: kotlin - What closing a kotlinx.coroutines channel does - Stack Overflow
1 Like