|
@@ -24,6 +24,7 @@ use errors::*;
|
|
|
/// This channel will use the [default recycling policy].
|
|
|
///
|
|
|
/// [recycling policy]: crate::recycling::DefaultRecycle
|
|
|
+#[must_use]
|
|
|
pub fn channel<T: Default + Clone>(capacity: usize) -> (Sender<T>, Receiver<T>) {
|
|
|
with_recycle(capacity, recycling::DefaultRecycle::new())
|
|
|
}
|
|
@@ -32,6 +33,7 @@ pub fn channel<T: Default + Clone>(capacity: usize) -> (Sender<T>, Receiver<T>)
|
|
|
/// the provided [recycling policy].
|
|
|
///
|
|
|
/// [recycling policy]: crate::recycling::Recycle
|
|
|
+#[must_use]
|
|
|
pub fn with_recycle<T, R: Recycle<T>>(
|
|
|
capacity: usize,
|
|
|
recycle: R,
|
|
@@ -48,6 +50,7 @@ pub fn with_recycle<T, R: Recycle<T>>(
|
|
|
let rx = Receiver { inner };
|
|
|
(tx, rx)
|
|
|
}
|
|
|
+
|
|
|
/// Synchronously receives values from associated [`Sender`]s.
|
|
|
///
|
|
|
/// Instances of this struct are created by the [`channel`] and
|
|
@@ -184,6 +187,7 @@ feature! {
|
|
|
///
|
|
|
/// [async]: crate::mpsc::StaticChannel
|
|
|
/// [`split`]: StaticChannel::split
|
|
|
+ #[must_use]
|
|
|
pub const fn new() -> Self {
|
|
|
Self {
|
|
|
core: ChannelCore::new(CAPACITY),
|
|
@@ -206,6 +210,7 @@ feature! {
|
|
|
/// # Panics
|
|
|
///
|
|
|
/// If the channel has already been split.
|
|
|
+ #[must_use]
|
|
|
pub fn split(&'static self) -> (StaticSender<T, R>, StaticReceiver<T, R>) {
|
|
|
self.try_split().expect("channel already split")
|
|
|
}
|
|
@@ -216,6 +221,7 @@ feature! {
|
|
|
/// A static channel can only be split a single time. If
|
|
|
/// [`StaticChannel::split`] or [`StaticChannel::try_split`] have been
|
|
|
/// called previously, this method returns `None`.
|
|
|
+ #[must_use]
|
|
|
pub fn try_split(&'static self) -> Option<(StaticSender<T, R>, StaticReceiver<T, R>)> {
|
|
|
self.is_split
|
|
|
.compare_exchange(false, true, Ordering::SeqCst, Ordering::SeqCst)
|