rsocket-rust
rsocket-rust is an implementation of the RSocket protocol in Rust(1.39+). It's an alpha version and still under active development.
Do not use it in a production environment!
Example
Here are some example codes which show how RSocket works in Rust.
Server
extern crate rsocket_rust;
extern crate tokio;
extern crate log;
use *;
use env;
use Error;
async
Client
extern crate rsocket_rust;
use *;
async
Dependencies
TODO
- Operations
- METADATA_PUSH
- REQUEST_FNF
- REQUEST_RESPONSE
- REQUEST_STREAM
- REQUEST_CHANNEL
- More Operations
- Error
- Cancel
- Fragmentation
- Resume
- QoS
- RequestN
- Lease
- Transport
- TCP
- Websocket
- Reactor
- ...
- High Level APIs
- Client
- Server