Popularity
9.4
Stable
Activity
0.0
Stable
22
63
3

Monthly Downloads: 20
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Network    
Latest version: v0.2.1

network-transport-zeromq alternatives and similar packages

Based on the "Networking" category.
Alternatively, view network-transport-zeromq alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of network-transport-zeromq or a related project?

Add another 'Networking' Package

README

Cloud Haskell over ØMQ

Hackage package Build Status

network-transport backend based on the ØMQ brokerless protocol. This implementation makes it possible to access the wealth of ØMQ transports through a simple and shared API. In particular, ØMQ supports authenticated communication channels, encryption, efficient multicast and throughput enhancement techniques such as message batching.

Wrapping a subset of the ØMQ API behind the network-transport API makes it possible for a wealth of higher-level libraries such as distributed-process and HdpH to communicate over ØMQ seamlessly, with little to no modification necessary.

Features

Plain text authorization

It's possible to set a default username and password for all transport connections by setting authorization ZMQParameters

defaultZMQParameters{ authorizationType = ZMQAuthPlain "user" "password" }

Reliable connections

n-t-zmq uses the Push-Pull pattern to implement reliable connections.

Multicast protocol

network-transport-zeromq provides multicast group-based communication with the Pub-Sub protocol. This protocol is semi-reliable, in that if the high water mark (HWM) is reached then some messages may be lost.

Stability

Experimental.

Currently all tests from network-transport-tests are passing. All tests from distributed-process-tests are also passing, except monitoring and connection failure tests.

License

Copyright © 2014-2015 EURL Tweag.

All rights reserved.

network-transport-zeromq is free software, and may be redistributed under the terms specified in the [LICENSE](LICENSE) file.

About

Tweag I/O

HaskellR is maintained by Tweag I/O.

Have questions? Need help? Tweet at @tweagio.


*Note that all licence references and agreements mentioned in the network-transport-zeromq README section above are relevant to that project's source code only.