Struct tokio::task::LocalKey [−][src]
pub struct LocalKey<T: 'static> { /* fields omitted */ }
Expand description
A key for task-local data.
This type is generated by the task_local!
macro.
Unlike std::thread::LocalKey
, tokio::task::LocalKey
will
not lazily initialize the value on first access. Instead, the
value is first initialized when the future containing
the task-local is first polled by a futures executor, like Tokio.
Examples
tokio::task_local! { static NUMBER: u32; } NUMBER.scope(1, async move { assert_eq!(NUMBER.get(), 1); }).await; NUMBER.scope(2, async move { assert_eq!(NUMBER.get(), 2); NUMBER.scope(3, async move { assert_eq!(NUMBER.get(), 3); }).await; }).await;
Implementations
impl<T: 'static> LocalKey<T>
[src]
impl<T: 'static> LocalKey<T>
[src]pub async fn scope<F>(&'static self, value: T, f: F) -> F::Output where
F: Future,
[src]
pub async fn scope<F>(&'static self, value: T, f: F) -> F::Output where
F: Future,
[src]Sets a value T
as the task-local value for the future F
.
On completion of scope
, the task-local will be dropped.
Examples
tokio::task_local! { static NUMBER: u32; } NUMBER.scope(1, async move { println!("task local value: {}", NUMBER.get()); }).await;
impl<T: Copy + 'static> LocalKey<T>
[src]
impl<T: Copy + 'static> LocalKey<T>
[src]