Utilities for managing event loop threads.
With cargo edit.
cargo add wombo
Spawn an event loop thread that waits for a second, and conditionally interrupt it after 50 ms, returning some data to the main thread.
```rust
extern crate futures; extern crate wombo; extern crate tokio_timer;
use futures::Future; use tokio_timer::Timer;
use std::thread; use std::time::Duration;
use wombo::*;
const SHOULD_INTERRUPT: bool = true;
fn main() { // expected value when not interrupted let foo = 1; // expected value when interrupted let bar = 2;
let timer = Timer::default(); let sleepdur = Duration::frommillis(50);
let wombo = Wombo::new(); let options = ThreadOptions::new("loop-1", None);
let spawnresult = wombo.spawn(options, move |handle, hooks| { // sleep for a second, then return foo, or if canceled return bar let dur = Duration::frommillis(1000);
hooks.on_cancel(move || Ok(bar));
timer.sleep(dur)
.map_err(|_| ())
.and_then(move |_| Ok(foo))
});
if let Err(e) = spawn_result { panic!("Error spawning event loop thread: {:?}", e); }
// give the child thread a chance to initialize thread::sleep(sleep_dur);
assert!(wombo.isrunning()); println!("Wombo {} running thread {:?}", wombo.id(), wombo.corethread_id());
if SHOULD_INTERRUPT { if let Err(e) = wombo.cancel() { panic!("Error canceling: {:?}", e); } }
let result = match wombo.onexit() { Ok(rx) => rx.wait().unwrap(), Err(e) => panic!("Error calling onexit: {:?}", e) };
if SHOULDINTERRUPT { asserteq!(result, Some(bar)); }else{ assert_eq!(result, Some(foo)); } }
```
See examples for more.
To run the tests:
cargo test