Skip to content
New issue

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

sync: refactored PollSender<T> to fix a subtly broken Sink<T> implementation #4214

Merged
merged 12 commits into from Feb 9, 2022
2 changes: 1 addition & 1 deletion tokio-util/src/sync/mod.rs
Expand Up @@ -6,7 +6,7 @@ pub use cancellation_token::{guard::DropGuard, CancellationToken, WaitForCancell
mod intrusive_double_linked_list;

mod mpsc;
pub use mpsc::PollSender;
pub use mpsc::{PollSendError, PollSender};

mod poll_semaphore;
pub use poll_semaphore::PollSemaphore;
Expand Down