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 |
#1248 in Asynchronous
2,764 downloads per month
Used in noria-server
16KB
225 lines
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
- Apache License, Version 2.0 (LICENSE-APACHE or http://www.apache.org/licenses/LICENSE-2.0)
- MIT license (LICENSE-MIT or http://opensource.org/licenses/MIT)
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