16 releases (5 stable)
1.2.0 | Dec 31, 2021 |
---|---|
1.1.1 | Jan 22, 2021 |
1.0.1 | Dec 23, 2020 |
0.5.0 | Oct 29, 2020 |
0.1.2 | Jul 24, 2017 |
#2 in #io-operations
2,420,971 downloads per month
Used in 296 crates
(6 directly)
20KB
481 lines
tokio-io-timeout
Tokio wrappers which apply timeouts to IO operations.
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.
lib.rs
:
Tokio wrappers which apply timeouts to IO operations.
These timeouts are analogous to the read and write timeouts on traditional blocking sockets. A timeout countdown is
initiated when a read/write operation returns Poll::Pending
. If a read/write does not return successfully before
the countdown expires, an io::Error
with a kind of TimedOut
is returned.
Dependencies
~2–8MB
~46K SLoC