Generic-channel provides common abstract traits [Sender
], [Receiver
] between several channel implementations that widely used in the Rust community.
Currently support channel implementations:
NOTE: you need to enable those features in Cargo.toml
, use all
flag to enable all.
A handler function only wants to handle a sender or receiver to send/recv messages and do not care about the actual type or whether the sender is a crossbeam sender or a futures sender.
```rust
use generic_channel::{Sender, TrySendError};
// this method do not care about sender type.
fn eventproducer
// we can pass crossbeam channel to eventproducer
let (sender, receiver) = crossbeamchannel::unbounded::
// we can also pass a std Sender or a futures Sender
let (sender, receiver) = std::sync::mpsc::channel::
MIT