We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reproducer:
val channelBuffered = Channel<Int>(10) { println("RELEASE[BUFFER]: $it") } val channelUnlimited = Channel<Int>(Channel.UNLIMITED) { println("RELEASE[UNLIMITED]: $it") } repeat(5) { channelBuffered.offer(it) channelUnlimited.offer(it) } channelBuffered.cancel() channelUnlimited.cancel()
The text was updated successfully, but these errors were encountered:
Fix LinkedListChannel.onUndeliveredElement call on channel cancel
0f21190
Fixes #2435
Hey, @qwwdfsad when can we expect version, with this issue fixed, published? Will it be 1.4.3 or part of 1.5.0 release train?
Sorry, something went wrong.
7d0ad29
elizarov
No branches or pull requests
Reproducer:
The text was updated successfully, but these errors were encountered: