diff --git a/ntex-util/CHANGES.md b/ntex-util/CHANGES.md index 9ad96eca..02ce63a6 100644 --- a/ntex-util/CHANGES.md +++ b/ntex-util/CHANGES.md @@ -1,5 +1,9 @@ # Changes +## [2.4.0] - 2024-xx-xx + +* Remove mpsc::Sender::downgrade() + ## [2.3.0] - 2024-08-19 * Allow to send clonable value via `Condition` diff --git a/ntex-util/src/channel/cell.rs b/ntex-util/src/channel/cell.rs index d35e3dfb..9db3c309 100644 --- a/ntex-util/src/channel/cell.rs +++ b/ntex-util/src/channel/cell.rs @@ -1,5 +1,4 @@ -//! Custom cell impl -use std::{cell::UnsafeCell, fmt, rc::Rc, rc::Weak}; +use std::{cell::UnsafeCell, fmt, rc::Rc}; pub(super) struct Cell { inner: Rc>, @@ -38,29 +37,4 @@ impl Cell { pub(super) fn get_mut(&self) -> &mut T { unsafe { &mut *self.inner.as_ref().get() } } - - pub(super) fn downgrade(&self) -> WeakCell { - WeakCell { - inner: Rc::downgrade(&self.inner), - } - } -} - -#[derive(Debug)] -pub(super) struct WeakCell { - inner: Weak>, -} - -impl Clone for WeakCell { - fn clone(&self) -> Self { - Self { - inner: self.inner.clone(), - } - } -} - -impl WeakCell { - pub(super) fn upgrade(&self) -> Option> { - self.inner.upgrade().map(|inner| Cell { inner }) - } } diff --git a/ntex-util/src/channel/mpsc.rs b/ntex-util/src/channel/mpsc.rs index 695637c2..e9fdaef0 100644 --- a/ntex-util/src/channel/mpsc.rs +++ b/ntex-util/src/channel/mpsc.rs @@ -6,7 +6,7 @@ use std::{fmt, panic::UnwindSafe, pin::Pin, task::Context, task::Poll}; use futures_core::{FusedStream, Stream}; use futures_sink::Sink; -use super::cell::{Cell, WeakCell}; +use super::cell::Cell; use crate::task::LocalWaker; /// Creates a unbounded in-memory channel with buffered storage. @@ -66,13 +66,6 @@ impl Sender { pub fn is_closed(&self) -> bool { self.shared.strong_count() == 1 || !self.shared.get_ref().has_receiver } - - /// Returns downgraded sender - pub fn downgrade(self) -> WeakSender { - WeakSender { - shared: self.shared.downgrade(), - } - } } impl Clone for Sender { @@ -126,19 +119,6 @@ impl Drop for Sender { } } -#[derive(Debug)] -/// Weak sender type -pub struct WeakSender { - shared: WeakCell>, -} - -impl WeakSender { - /// Upgrade to `Sender` - pub fn upgrade(&self) -> Option> { - self.shared.upgrade().map(|shared| Sender { shared }) - } -} - /// The receiving end of a channel which implements the `Stream` trait. /// /// This is created by the `channel` function. @@ -282,10 +262,6 @@ mod tests { tx.close(); assert_eq!(stream_recv(&mut rx).await, None); - let (tx, _rx) = channel::(); - let weak_tx = tx.downgrade(); - assert!(weak_tx.upgrade().is_some()); - let (tx, rx) = channel(); tx.send("test").unwrap(); drop(rx);