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


pub use async_std::sync::Sender;
pub use async_std::sync::Receiver;
pub use inner::Channel;
pub use async_std::sync::RwLock;
pub use async_std::sync::RwLockReadGuard;
pub use async_std::sync::RwLockWriteGuard;


mod inner {

    use async_std::sync::channel;
    use super::Sender;
    use super::Receiver;

    /// abstraction for multi sender receiver channel
    #[derive(Debug)]
    pub struct Channel<T> {
        receiver: Receiver<T>,
        sender: Sender<T>
    }

    impl <T>Channel<T> {

        pub fn new(capacity: usize) -> Self {

            let (sender,receiver) = channel(capacity);
            Self {
                receiver,
                sender
            }
        }

        /// create new clone of sender
        pub fn sender(&self) -> Sender<T> {
            self.sender.clone()
        }

        pub fn receiver(&self) -> Receiver<T> {
            self.receiver.clone()
        }
    }

}