Skip to content

flaboy/erlzmq

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

56 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Erlang bindings for ZeroMQ (http://www.zeromq.org).

Building
    The bindings work against the master branch of ZeroMQ:
    http://github.com/zeromq/zeromq2

    $ git clone git@github.com:zeromq/erlzmq.git
    $ cd erlzmq
    $ ./bootstrap
    $ ./configure --with-zeromq=/path/to/zeromq
    $ make
    $ make docs

Documentation
    See http://zeromq.github.com/erlzmq for full documentation.
    (Content uploaded from doc/index.html).

Updating documentatin on GitHub
    $ git checkout master   # make sure you are on master branch
    $ make gitdocs          # this will update gh-pages branch and commit changes to origin

Examples
    PUB/SUB zmq_pubserver/zmq_subclient
    REQ/REP zmq_repserver/zmq_reqclient

    1> zmq:start_link().
    2> zmq_pubserver:run().
    3> zmq_subclient:run().
    4> zmq_subclient:run().

    You can run a server and any number of clients 
    in the same Erlang shell or on different nodes.

License
    BSD License

Copyright
    Copyright (c) 2010 Dhammika Pathirana
    Copywight (c) 2010 Serge Aleynikov

Contacts
    http://github.com/zeromq/erlzmq/issues

Copying
    Erlang bindings are released under open-source BSD License (see LICENSE file)

About

Erlang bindings for ZeroMQ messaging

Erlang ZeroMQ Bindings

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 46.2%
  • Erlang 43.5%
  • C 9.7%
  • Shell 0.6%