async-slot

Crates.ioasync-slot
lib.rsasync-slot
version0.1.0
sourcesrc
created_at2017-10-25 20:36:51.782511
updated_at2017-10-25 20:36:51.782511
description An asynchronous (futures-based) channel that only preserves last value sent
homepagehttps://github.com/tailhook/async-slot
repository
max_upload_size
id36922
size44,551
Paul Colomiets (tailhook)

documentation

https://docs.rs/async-slot

README

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.

Commit count: 0

cargo fmt