Skip to content

andrAnat-b/wolfmq

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

WolfMQ

WolfMQ is a small and fast Erlang message broker and queued task processor

Getting Started

%% Push
1> QueueId = 1.
1
2> F = fun() -> io:format("F message") end.
#Fun<erl_eval.20.80484245>
3> MFA = {io, format, ["MFA message~n", []]}.
{io,format,["MFA message~n",[]]}
4> ok = wolfmq:push(QueueId, F).
ok
4> ok = wolfmq:push(QueueId, MFA).
ok

Project Chat Room

![Gitter](https://badges.gitter.im/Join Chat.svg)

About

Simple message broker for Erlang

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Erlang 99.6%
  • Makefile 0.4%