6 releases

0.2.3 Jan 14, 2023
0.2.2 Apr 16, 2020
0.2.1 Feb 4, 2020
0.1.1 Feb 4, 2020

#616 in Asynchronous

Download history 560/week @ 2023-12-07 597/week @ 2023-12-14 335/week @ 2023-12-21 168/week @ 2023-12-28 412/week @ 2024-01-04 363/week @ 2024-01-11 533/week @ 2024-01-18 269/week @ 2024-01-25 714/week @ 2024-02-01 768/week @ 2024-02-08 490/week @ 2024-02-15 861/week @ 2024-02-22 381/week @ 2024-02-29 331/week @ 2024-03-07 637/week @ 2024-03-14 734/week @ 2024-03-21

2,143 downloads per month
Used in noria-server

MIT/Apache

16KB
225 lines

Crates.io Documentation Codecov


Strawpoll — a wrapper to avoid spurious polling.

Sometimes, you have a future that itself contains smaller futures. When the larger future is polled, it polls those child futures to see if any of them have made progress. This can be inefficient if polling such a future is expensive; when the big future is woken up, it is usually because one of its child futures was notified, and ideally only that one future should be polled. Polling the other child futures that were not notified is wasting precious cycles. This crate provides a wrapper for Future types, and other types that you may wish to call poll-like methods on that avoids such spurious calls to poll.

License

Licensed under either of

at your option.

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

~28KB