ruststalk

Crates.ioruststalk
lib.rsruststalk
version0.0.1
sourcesrc
created_at2015-01-05 03:14:57.863214
updated_at2015-12-11 23:56:40.231265
descriptionA beanstalkd client for rust.
homepagehttps://github.com/Seich/ruststalk
repositoryhttps://github.com/Seich/ruststalk.git
max_upload_size
id712
size7,008
David Díaz (Seich)

documentation

https://github.com/Seich/ruststalk/wiki

README

Ruststalk

A Rust Beanstalkd client.

Ruststalk aims to provide a protocol abiding implementation of a beanstalkd client.

Example

let stream = TcpStream::connect("127.0.0.1", 11300).unwrap();
let mut c = Client::new(stream);

let _ = c.use_tube("ruststalk");
let _ = c.put(1i, 0i, 0i, "Hello World");

let result = c.reserve();

if  result.is_ok() {
	println!("{}", result.unwrap());
}

License

Licensed under the MIT License.

Commit count: 4

cargo fmt