commit | 3a188bd9c570b3dd0825973e501090afc9a4beab | [log] [tgz] |
---|---|---|
author | Android Build Coastguard Worker <[email protected]> | Sat Feb 03 02:10:58 2024 +0000 |
committer | Android Build Coastguard Worker <[email protected]> | Sat Feb 03 02:10:58 2024 +0000 |
tree | 5a8ef7749b2793766d97ab82661b46f856ff7df4 | |
parent | fd032c6bcb70f4453bbb07d4f54f3a7d2375b481 [diff] | |
parent | 925586c02a7faf58a9629889dc22fdcffbe291e4 [diff] |
Snap for 11399874 from 925586c02a7faf58a9629889dc22fdcffbe291e4 to 24D1-release Change-Id: I9d513694169458423db1bea737989b5beb13d0d6
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.