6 releases
0.2.0-alpha.6 | Oct 1, 2019 |
---|---|
0.2.0-alpha.5 | Sep 19, 2019 |
0.2.0-alpha.4 | Aug 29, 2019 |
0.0.0 | Feb 1, 2018 |
#2190 in Asynchronous
2,024 downloads per month
Used in 4 crates
1MB
15K
SLoC
tokio-reactor
Event loop that drives Tokio I/O resources.
License
This project is licensed under the MIT license.
Contribution
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in Tokio by you, shall be licensed as MIT, without any additional terms or conditions.
lib.rs
:
Event loop that drives Tokio I/O resources.
The reactor is the engine that drives asynchronous I/O resources (like TCP and
UDP sockets). It is backed by mio
and acts as a bridge between mio
and
futures
.
The crate provides:
-
Reactor
is the main type of this crate. It performs the event loop logic. -
Handle
provides a reference to a reactor instance. -
Registration
andPollEvented
allow third parties to implement I/O resources that are driven by the reactor.
Application authors will not use this crate directly. Instead, they will use the
tokio
crate. Library authors should only depend on tokio-net
if they
are building a custom I/O resource.
For more details, see reactor module documentation in the Tokio crate.
Dependencies
~2.4–3.5MB
~57K SLoC