rotor-stream 0.3.0

The stream abstration on top of rotor. This is the easiest way to build a protocol on top of TCP (Unix sockets) with rotor
docs.rs failed to build rotor-stream-0.3.0
Please check the build logs for more information.
See Builds for ideas on how to fix a failed build, or Metadata for how to configure docs.rs builds.
If you believe this is docs.rs' fault, open an issue.
Visit the last successful build: rotor-stream-0.6.2

============ Rotor Stream

:Status: Alpha :Dependencies: rotor_, mio_, netbuf_

.. _rotor: http://github.com/tailhook/rotor .. _mio: https://github.com/carllerche/mio .. _netbuf: https://github.com/tailhook/netbuf

A stream abstraction based on MIO. Features:

  • State machine-based implementation (as usually in rotor_)
  • Uses netbuf_ for buffering, buffer has contiguous data slice (easy parsing)
  • Input data abstractions: read-x-bytes, read-until-delimiter
  • Perfect for request-reply style protocols
  • Independent of whether it's client or server, tcp or unix sockets
  • (TODO) should work on top of SSL later