Skip to content
This repository has been archived by the owner on Nov 7, 2020. It is now read-only.

jjyr/generic-channel

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Generic-channel

Crates.io MIT licensed Build Status Docs

Generic-channel provides common abstract traits [Sender], [Receiver] between several channel implementations that widely used in the Rust community.

Currently support channel implementations:

  • std
  • crossbeam-channel
  • futures

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.

Examples

# extern crate generic_channel;
# extern crate crossbeam_channel;
use generic_channel::{Sender, TrySendError};

// this method do not care about sender type.
fn event_producer<S: Sender<i32>>(sender: S) -> Result<(), TrySendError<i32>> {
    for i in 1..10 {
        sender.try_send(i)?
    }
    Ok(())
}

// we can pass crossbeam channel to event_producer
let (sender, receiver) = crossbeam_channel::unbounded::<i32>();
event_producer(sender);
assert_eq!((1..10).map(|_| receiver.recv().unwrap()).collect::<Vec<_>>(), (1..10).collect::<Vec<_>>());

// we can also pass a std Sender or a futures Sender
let (sender, receiver) = std::sync::mpsc::channel::<i32>();
event_producer(sender);
assert_eq!((1..10).map(|_| receiver.recv().unwrap()).collect::<Vec<_>>(), (1..10).collect::<Vec<_>>());

Documentation

Generic-channel Documentation

License

MIT

About

Generic `Sender` and `Receiver` abstract between several channel implementations: std, crossbeam-channel, futures

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages