callback-future-rs

A simple adapter between callbacks and futures.

Example

Dependencies:

toml [dependencies] callback-future="0.1"

Code:

```rust use callbackfuture::CallbackFuture; use futures::executor::blockon; use std::thread; use std::time::Duration;

async fn getresult() -> String { CallbackFuture::new( |complete| { // simulate async callback from another thread thread::spawn(move || { thread::sleep(Duration::fromsecs(1)); complete("Hello, world!".to_string()); }); } ).await }

fn main() { asserteq!(blockon(get_result()), "Hello, world!"); } ```

License

This project is licensed under either of

at your option.