#callback #await #converting #results #obtaining #assist

callback-result

Assists in converting the callback function's method of obtaining results into the await method

3 releases

0.1.2 Apr 10, 2024
0.1.1 Apr 9, 2024
0.1.0 Mar 20, 2024

#2 in #obtaining

Download history 137/week @ 2024-03-18 19/week @ 2024-04-01 274/week @ 2024-04-08 1/week @ 2024-04-15

297 downloads per month

MIT license

10KB
203 lines

callback-result

Assists in converting the callback function's method of obtaining results into the await method

let waiter = Arc::new(CallbackWaiter::new());
let callback_id = 1;
let result_future = waiter.create_result_future(callback_id);
let tmp_waiter = waiter.clone();
async_std::task::spawn(async move {
    async_std::task::sleep(Duration::from_millis(1000)).await;
    tmp_waiter.set_result(callback_id, 1);
});
let ret = result_future.await.unwrap();
assert_eq!(ret, 1);

Dependencies

~5–14MB
~170K SLoC