This library is a workaround until futures-rs
and error-chain
crates works out-of-box with each other
Just use like the error-chain
crate, you run the future_chain!
macro that will create the code needed to work with error-chain
crate.
Example: ```rust
extern crate error_chain;
extern crate futures; extern crate futures_cpupool;
extern crate futureserrorchain;
mod foo { mod errors { error_chain! { errors { Foo(err: String) { description("Foo error") display("Foo error: {}", err) } } }
future_chain!{}
}
pub use self::errors::*;
use futures::future;
fn bar() -> FutureChain<String> {
future::err(ErrorKind::Foo("bar".to_owned()).into()).boxed()
}
fn bar2() -> FutureChain<String> {
future::ok("bar2".to_owned()).boxed()
}
pub fn foo() -> FutureChain<String> {
bar().and_then(|_| bar2()).chain_err(|| "foo")
}
}
mod errors { error_chain! { links { Foo(::foo::Error, ::foo::ErrorKind); } } }
use errors::*;
fn mymain() -> Result<()> { use futurescpupool::CpuPool; use futures::Future;
let pool = CpuPool::new_num_cpus();
let f = foo::foo();
let f2 = pool.spawn(f);
f2.wait()?;
Ok(())
}
quickmain!(mymain); ```