transportation 5.0.0

A callback wrapper around MIO
Documentation
1
2
3
4
5
6
7
extern crate transportation;

fn main() {
	transportation::set_timeout(|| eprintln!("Hello"), ::std::time::Duration::from_secs(5));
	transportation::run();
	eprintln!("Done");
}