rust_asio 0.2.1

Asynchronous I/O library
Documentation

asio - ASynchronous Input/Output library

Build Status

The asio is not compatible to Rust stable version (ver 1.9). Please install a Rust-nightly.

This crate is on github and can be used by adding asio to the dependencies in your project's Cargo.toml.

[dependencies]
rust_asio = "*"

Documentation

Features

  • Proactor design pattern based thread-safe asynchronous I/O.
  • Does not dependent on the number of threads.
  • Supported protocol is in TCP, UDP, Unix-domain socket and etc.
  • Supported timer is in system timer, steady timer.

Platforms

Currently supported platforms:

  • Linux (kernel in version >=2.6.27)

TODO list

  1. BSD will support (kqueue support).
  2. Signal will support.
  3. SSL will support.
  4. Generic protocol socket will support.
  5. File descriptor socket will support.
  6. Windows will support.