commit | fd032c6bcb70f4453bbb07d4f54f3a7d2375b481 | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Wed Nov 15 02:11:18 2023 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Wed Nov 15 02:11:18 2023 +0000 |
tree | 8a763a1c5550d7d09e4a8f40721ff3f388c15895 | |
parent | 25152e5dd42aebd92fc87a8fd1657473d3560f68 [diff] | |
parent | f56f35bc218616237b290b2de82ff3a341959e58 [diff] |
Snap for 11098369 from f56f35bc218616237b290b2de82ff3a341959e58 to 24D1-release Change-Id: I26802fe883675e63b060ed326041c3d929ea6345
This crate provides concurrent queues that can be shared among threads:
ArrayQueue
, a bounded MPMC queue that allocates a fixed-capacity buffer on construction.SegQueue
, an unbounded MPMC queue that allocates small buffers, segments, on demand.Everything in this crate can be used in no_std
environments, provided that alloc
feature is enabled.
Add this to your Cargo.toml
:
[dependencies] crossbeam-queue = "0.3"
Crossbeam Queue supports stable Rust releases going back at least six months, and every time the minimum supported Rust version is increased, a new minor version is released. Currently, the minimum supported Rust version is 1.38.
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.