deno_unsync 0.4.4

A collection of adapters to make working with Tokio single-threaded runtimes easier
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Copyright 2018-2024 the Deno authors. MIT license.

mod flag;
mod task_queue;
#[cfg(feature = "tokio")]
mod value_creator;

pub use flag::AtomicFlag;
pub use task_queue::TaskQueue;
pub use task_queue::TaskQueuePermit;
#[cfg(feature = "tokio")]
pub use value_creator::MultiRuntimeAsyncValueCreator;