#slot #future #async #tokio #unbounded-channel #preserve

async-slot

An asynchronous (futures-based) channel that only preserves last value sent

1 unstable release

Uses old Rust 2015

0.1.0 Oct 25, 2017

#9 in #unbounded-channel

Download history 13/week @ 2023-11-27 1/week @ 2023-12-04 11/week @ 2023-12-11 10/week @ 2023-12-18 3/week @ 2023-12-25 13/week @ 2024-01-08 6/week @ 2024-01-15 2/week @ 2024-01-29 1/week @ 2024-02-05 11/week @ 2024-02-12 35/week @ 2024-02-19 24/week @ 2024-02-26 28/week @ 2024-03-04 26/week @ 2024-03-11

115 downloads per month
Used in 8 crates (2 directly)

MIT/Apache

21KB
247 lines

Async Slot

Documentation | Github | Crate

An unbounded channel that only stores last value sent made for futures.

Features:

  1. Compacts memory (only last value is kept)
  2. Has poll_cancel and is_canceled
  3. Single-producer/single-consumer
  4. Never has backpressure (because value is just replaced)
  5. Replaced value can be recovered if using swap method.
  6. Sync, so if multi-producer is desired, Sender can be wrapped into an Arc/Rc and swap method is used to update value.

License

Licensed under either of

Contribution

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.

Dependencies

~53KB