event_rust

Crates.ioevent_rust
lib.rsevent_rust
version0.1.1
sourcesrc
created_at2015-08-18 13:06:52.547032
updated_at2015-12-11 23:58:51.47213
descriptionLightweight non-blocking IO support windows and linux
homepagehttps://github.com/tickbh/event_rust
repositoryhttps://github.com/tickbh/event_rust
max_upload_size
id2867
size59,711
问蒙框架服务 (tickbh)

documentation

README

Event - Async IO

Event is a lightweight IO library for Rust with a focus on adding as little overhead as possible over the OS abstractions.

Build Status

Getting started guide Currently a work in progress:

Usage

To use event_rust, first add this to your Cargo.toml:

[dependencies]
event_rust = "0.1.0"

Then, add this to your crate root:

extern crate event;

Features

  • Event loop backed by epoll, windows by select.
  • Non-blocking TCP sockets
  • High performance timer system

Platforms

Currently, event_rust only supports Linux and Windows. The goal is to support all platforms that support Rust and the readiness IO model.

Commit count: 0

cargo fmt