1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
//! Asynchronous channels.
//!
//! This module provides various channels that can be used to communicate between
//! asynchronous tasks.

mod error;
pub use self::error::{ChannelSendError, TryReceiveError, TrySendError};

mod channel_future;
use channel_future::{
    ChannelReceiveAccess, ChannelSendAccess, RecvPollState, RecvWaitQueueEntry,
    SendPollState, SendWaitQueueEntry,
};
pub use channel_future::{
    ChannelReceiveFuture, ChannelSendFuture, CloseStatus,
};

mod oneshot;

pub use self::oneshot::{GenericOneshotChannel, LocalOneshotChannel};

#[cfg(feature = "std")]
pub use self::oneshot::OneshotChannel;

mod oneshot_broadcast;

pub use self::oneshot_broadcast::{
    GenericOneshotBroadcastChannel, LocalOneshotBroadcastChannel,
};

#[cfg(feature = "std")]
pub use self::oneshot_broadcast::OneshotBroadcastChannel;

mod state_broadcast;
pub use state_broadcast::{
    GenericStateBroadcastChannel, LocalStateBroadcastChannel, StateId,
    StateReceiveFuture,
};

#[cfg(feature = "std")]
pub use self::state_broadcast::StateBroadcastChannel;

mod mpmc;

pub use self::mpmc::{
    ChannelStream, GenericChannel, LocalChannel, LocalUnbufferedChannel,
};

#[cfg(feature = "std")]
pub use self::mpmc::{Channel, UnbufferedChannel};

#[cfg(feature = "alloc")]
mod if_alloc {

    /// Channel implementations where Sender and Receiver sides are cloneable
    /// and owned.
    /// The Futures produced by channels in this module don't require a lifetime
    /// parameter.
    pub mod shared {
        pub use super::super::channel_future::shared::*;
        pub use super::super::mpmc::shared::*;
        pub use super::super::oneshot::shared::*;
        pub use super::super::oneshot_broadcast::shared::*;
        pub use super::super::state_broadcast::shared::*;
    }
}

#[cfg(feature = "alloc")]
pub use self::if_alloc::*;