Crates.io | async-local |
lib.rs | async-local |
version | |
source | src |
created_at | 2022-11-26 00:53:29.715085+00 |
updated_at | 2025-03-25 04:27:49.781052+00 |
description | For using thread locals within an async context across await points |
homepage | |
repository | https://github.com/Bajix/async-local/ |
max_upload_size | |
id | 723024 |
Cargo.toml error: | TOML parse error at line 19, column 1 | 19 | autolib = false | ^^^^^^^ unknown field `autolib`, expected one of `name`, `version`, `edition`, `authors`, `description`, `readme`, `license`, `repository`, `homepage`, `documentation`, `build`, `resolver`, `links`, `default-run`, `default_dash_run`, `rust-version`, `rust_dash_version`, `rust_version`, `license-file`, `license_dash_file`, `license_file`, `licenseFile`, `license_capital_file`, `forced-target`, `forced_dash_target`, `autobins`, `autotests`, `autoexamples`, `autobenches`, `publish`, `metadata`, `keywords`, `categories`, `exclude`, `include` |
size | 0 |
This crate enables references to thread locals to be used in an async context across await points or within blocking threads managed by the Tokio runtime
By configuring Tokio with a barrier to rendezvous worker threads during shutdown, it can be gauranteed that no task will outlive thread local data belonging to worker threads. With this, pointers to thread locals constrained by invariant lifetimes are guaranteed to be of a valid lifetime suitable for use accross await points.
The optimization that this crate provides require that the async_local::main or async_local::test macro be used to configure the Tokio runtime. This is enforced by a pre-main check that asserts async_local::main has been used.
Enabling the compat
feature flag will allow this crate to be used with any runtime configuration by disabling the performance optimization this crate provides and instead internally using std::sync::Arc
#[cfg(test)]
mod tests {
use std::sync::atomic::{AtomicUsize, Ordering};
use async_local::{AsyncLocal, Context};
use generativity::make_guard;
use tokio::task::yield_now;
thread_local! {
static COUNTER: Context<AtomicUsize> = Context::new(AtomicUsize::new(0));
}
#[async_local::test]
async fn it_increments() {
make_guard!(guard);
let counter = COUNTER.local_ref(guard);
yield_now().await;
counter.fetch_add(1, Ordering::SeqCst);
}
}