longshorej / conqueue

Yet another multi-producer, single-consumer queue (MPSC) for the Rust programming language.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Disconnected receiver

longshorej opened this issue · comments

Given a sender/receiver pair, if the receiver is dropped, all messages pushed by any senders should be immediately dropped.

Additionally, it's desirable that this feature not significantly impact performance or memory usage.