commit | b27cc455398a25d567babdadc97dc1e5a9668caa | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Sat Feb 03 02:11:39 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Sat Feb 03 02:11:39 2024 +0000 |
tree | 5a8ef7749b2793766d97ab82661b46f856ff7df4 | |
parent | f56f35bc218616237b290b2de82ff3a341959e58 [diff] | |
parent | 925586c02a7faf58a9629889dc22fdcffbe291e4 [diff] |
Snap for 11399958 from 925586c02a7faf58a9629889dc22fdcffbe291e4 to 24Q2-release Change-Id: I8ae38ffce197b004a375cbee768f17133acefc1f
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.60.
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.