7 releases

Uses old Rust 2015

0.2.5 Dec 7, 2023
0.2.4 Jan 6, 2023
0.2.3 Jul 10, 2020
0.2.2 Jun 15, 2018
0.1.0 Mar 15, 2018

#37 in Concurrency

Download history 1757185/week @ 2024-12-16 867308/week @ 2024-12-23 1067109/week @ 2024-12-30 1876309/week @ 2025-01-06 2041058/week @ 2025-01-13 1891836/week @ 2025-01-20 2011893/week @ 2025-01-27 2284775/week @ 2025-02-03 2292914/week @ 2025-02-10 2356835/week @ 2025-02-17 2385007/week @ 2025-02-24 2721895/week @ 2025-03-03 2763383/week @ 2025-03-10 3096843/week @ 2025-03-17 3157838/week @ 2025-03-24 2696451/week @ 2025-03-31

11,858,021 downloads per month
Used in 22,508 crates (8 directly)

MIT license

11KB
137 lines

TryLock

A light-weight lock guarded by an atomic boolean.

Most efficient when contention is low, acquiring the lock is a single atomic swap, and releasing it just 1 more atomic swap.

Example

use std::sync::Arc;
use try_lock::TryLock;

// a thing we want to share
struct Widget {
    name: String,
}

// lock it up!
let widget1 = Arc::new(TryLock::new(Widget {
    name: "Spanner".into(),
}));

let widget2 = widget1.clone();


// mutate the widget
let mut locked = widget1.try_lock().expect("example isn't locked yet");
locked.name.push_str(" Bundle");

// hands off, buddy
let not_locked = widget2.try_lock();
assert!(not_locked.is_none(), "widget1 has the lock");

// ok, you can have it
drop(locked);

let locked2 = widget2.try_lock().expect("widget1 lock is released");

assert_eq!(locked2.name, "Spanner Bundle");

No runtime deps