#instance #await #drop

wait-counter

A counter allow you to wait, and return when it reach 1

3 releases

Uses new Rust 2024

0.1.2 Mar 13, 2025
0.1.1 Mar 13, 2025
0.1.0 Mar 13, 2025

#13 in #drop

Download history 146/week @ 2025-03-07 191/week @ 2025-03-14 12/week @ 2025-03-21

349 downloads per month

Apache-2.0

8KB
67 lines

wait-counter

let counter = WaitCounter::new();
let cloned = counter.clone();
tokio::spawn(async move {
    // After simulating time-consuming operations, drop the cloned instance
    tokio::time::sleep(Duration::from_millis(1000)).await;
    drop(cloned);
});

counter.wait().await;
println!("Counter reached 1");

Dependencies

~2.2–8.5MB
~49K SLoC