История изменений
Исправление gagarin0, (текущая версия) :
Если C, то звиняй - в язык асинхронщину не завезли.
Tokio is an event-driven, non-blocking I/O platform for writing asynchronous
//! applications with the Rust programming language. At a high level, it
//! provides a few major components:
//!
....
//! * A [runtime] for executing asynchronous code, including a task scheduler,
//! an I/O driver backed by the operating system's event queue (`epoll`, `kqueue`,
//! `IOCP`, etc...), and a high performance timer.
Исходная версия gagarin0, :
Если C, то звиняй - в язык асинхронщину не завезли.
Tokio is an event-driven, non-blocking I/O platform for writing asynchronous
//! applications with the Rust programming language. At a high level, it
//! provides a few major components:
//!
//! * Tools for [working with asynchronous tasks][tasks], including
//! [synchronization primitives and channels][sync] and [timeouts, sleeps, and
//! intervals][time].
//! * APIs for [performing asynchronous I/O][io], including [TCP and UDP][net] sockets,
//! [filesystem][fs] operations, and [process] and [signal] management.
//! * A [runtime] for executing asynchronous code, including a task scheduler,
//! an I/O driver backed by the operating system's event queue (`epoll`, `kqueue`,
//! `IOCP`, etc...), and a high performance timer.