#exit #signal #future #dropped #tetsy #coordinate #cloneable

tetsy-exit-future

Tetsy Future that signals exit to many receivers

Show the crate…

1 unstable release

0.2.0 Feb 24, 2021

#9 in #cloneable

Download history 3/week @ 2024-11-13 6/week @ 2024-11-20 11/week @ 2024-11-27 21/week @ 2024-12-04 32/week @ 2024-12-11 9/week @ 2024-12-18 2/week @ 2025-01-01 8/week @ 2025-01-08 8/week @ 2025-01-15 7/week @ 2025-01-22 31/week @ 2025-02-05 46/week @ 2025-02-12 3/week @ 2025-02-19 18/week @ 2025-02-26

98 downloads per month
Used in 23 crates (via tc-service)

MIT license

6KB
124 lines

Tetsy Exit Future

Documentation


Create a Signal and cloneable Exit future that fires when Signal is fired or dropped. Used to coordinate exit between multiple event-loop threads.

let (signal, exit) = tetsy_exit_future::signal();

::std::thread::spawn(move || {
    // future resolves when signal fires
    exit.wait();
});

let _ = signal.fire(); // also would fire on drop.

Dependencies

~0.6–0.8MB
~15K SLoC