Crates.io | soio |
lib.rs | soio |
version | 0.2.3 |
source | src |
created_at | 2017-03-06 08:44:43.857435 |
updated_at | 2017-06-25 07:30:02.529871 |
description | I/O library for Rust |
homepage | https://github.com/mcorce/soio |
repository | https://github.com/mcorce/soio |
max_upload_size | |
id | 8850 |
size | 199,866 |
Soio is a I/O library for Rust.
Based on carllerche/mio
Document
First, add this to your Cargo.toml
:
[dependencies]
soio = "0.1"
Then, add this to your crate root:
extern crate soio:
Example:
use soio::{Events, Poll, Ready, PollOpt, Token};
use soio::tcp::{TcpListener, TcpStream};
// Setup some tokens to allow us to identify which event is
// for which socket.
const SERVER: Token = Token(0);
const CLIENT: Token = Token(1);
let addr = "127.0.0.1:13265".parse().unwrap();
// Setup the server socket
let server = TcpListener::bind(&addr).unwrap();
// Create an poll instance
let poll = Poll::new().unwrap();
// Start listening for incoming connections
poll.register(&server, SERVER, Ready::readable(),
PollOpt::edge()).unwrap();
// Setup the client socket
let sock = TcpStream::connect(&addr).unwrap();
// Register the socket
poll.register(&sock, CLIENT, Ready::readable(),
PollOpt::edge()).unwrap();
// Create storage for events
let mut events = Events::with_capacity(1024);
loop {
poll.poll(&mut events, None).unwrap();
for event in events.iter() {
match event.token() {
SERVER => {
// Accept and drop the socket immediately, this will close
// the socket and notify the client of the EOF.
let _ = server.accept();
}
CLIENT => {
// The server just shuts down the socket, let's just exit
// from our event loop.
return;
}
_ => unreachable!(),
}
}
}