async-oneshot

License Package Documentation

A fast, small, full-featured, async-aware oneshot channel.

Features:

Usage

```rust

[test]

fn successonethread() { let (s,r) = oneshot::(); asserteq!((), s.send(true).unwrap()); asserteq!(Ok(true), future::block_on(r)); } ```

Performance

async-oneshot comes with a benchmark suite which you can run with cargo bench.

All benches are single-threaded and take double digit nanoseconds on my machine. async benches use futures_lite::future::block_on as an executor.

Numbers from my machine

Here are benchmark numbers from my primary machine, a Ryzen 9 3900X running alpine linux 3.12 that I attempted to peg at maximum cpu:

create_destroy time: [54.134 ns 54.150 ns 54.167 ns] send/success time: [15.399 ns 15.673 ns 15.929 ns] send/closed time: [45.022 ns 45.177 ns 45.321 ns] try_recv/success time: [43.752 ns 43.924 ns 44.078 ns] try_recv/empty time: [14.934 ns 15.244 ns 15.544 ns] try_recv/closed time: [45.867 ns 46.048 ns 46.211 ns] async.recv/success time: [45.851 ns 46.004 ns 46.141 ns] async.recv/closed time: [45.501 ns 45.730 ns 45.948 ns] async.wait/success time: [77.326 ns 77.372 ns 77.419 ns] async.wait/closed time: [47.672 ns 47.841 ns 48.002 ns]

In short, we are very fast. Close to optimal, I think.

Compared to other libraries

The oneshot channel in futures isn't very fast by comparison.

Tokio put up an excellent fight and made us work hard to improve. In general I'd say we're slightly faster overall, but it's incredibly tight.

Note on safety

This crate uses UnsafeCell and manually synchronises with atomic bitwise ops for performance. We believe it is now correct, but we would welcome more eyes on it.

See Also

Changelog

v0.4.1

Fixes:

Improvements:

v0.4.0

Breaking changes:

Fixes:

Improvements:

v0.3.3

Improvements:

v0.3.2

Fixes:

v0.3.1

Improvements:

v0.3.0

Improvements:

v0.2.0

Copyright and License

Copyright (c) 2020 James Laver, async-oneshot contributors.

This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/.