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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
//! Asynchronous channels.
//!
//! This module provides various channels that can be used to communicate between
//! asynchronous tasks.

mod error;
pub use self::error::{ChannelSendError};

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

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::{
    StateId,
    GenericStateBroadcastChannel,
    LocalStateBroadcastChannel,
    StateReceiveFuture,
};

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

mod mpmc;

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

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

// The next section should really integrated if the alloc feature is active,
// since it mainly requires `Arc` to be available. However for simplicity reasons
// it is currently only activated in std environments.
#[cfg(feature = "std")]
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 = "std")]
pub use self::if_alloc::*;