@hackage binary-protocol-zmq0.2
Monad to ease implementing a binary network protocol over ZeroMQ
Categories
License
BSD-3-Clause
Maintainer
Nicolas Trangez <eikke@eikke.com>
Links
Versions
Installation
Dependencies (5)
- base >=4 && <5
- binary
- bytestring
- mtl
- zeromq-haskell Show all…
Dependents (1)
@hackage/acme-everything
Package Flags
tests
(off by default)
Build the tests
optimize
(on by default)
Enable optimizations for the library
The monad provided in this package provides an easy way to implement servers
and clients which exchange messages (types which are instances of
Data.Binary.Binary
) over ZeroMQ sockets.
This is heavily based on the Control.Monad.BinaryProtocol
package by Gregory
Crosswhite.