#thread #stoppable #stopped #atomic #stop #sync #interface

stoppable_thread

A wrapper for thread that allows it to be easily stopped cooperatively

7 releases

Uses old Rust 2015

0.2.1 May 6, 2016
0.2.0 May 6, 2016
0.1.4 Mar 12, 2016

#853 in Concurrency

Download history 154/week @ 2024-11-24 134/week @ 2024-12-01 301/week @ 2024-12-08 280/week @ 2024-12-15 67/week @ 2024-12-22 225/week @ 2024-12-29 472/week @ 2025-01-05 266/week @ 2025-01-12 382/week @ 2025-01-19 387/week @ 2025-01-26 250/week @ 2025-02-02 282/week @ 2025-02-09 178/week @ 2025-02-16 164/week @ 2025-02-23 134/week @ 2025-03-02 185/week @ 2025-03-09

676 downloads per month
Used in 5 crates (4 directly)

MIT license

7KB
138 lines

A stoppable, thin wrapper around std::Thread.

Uses std::sync::atomic::AtomicBool and std::thread to create stoppable threads.

The interface is very similar to that of std::thread::Thread (or rather std::thread::JoinHandle) except that every closure passed in must accept a stopped parameter, allowing to check whether or not a stop was requested.

Since all stops must have gracefully, i.e. by requesting the child thread to stop, partial values can be returned if needed.

Example:

use stoppable_thread;

let handle = stoppable_thread::spawn(|stopped| {
    let mut count: u64 = 0;

    while !stopped.get() {
        count += 1
    }

    count
});

// work in main thread

// stop the thread. we also want to collect partial results
let child_count = handle.stop().join().unwrap();

No runtime deps