├── .builds ├── adm64-freebsd-ldc.yaml └── amd64-linux-dmd.yaml ├── .gitignore ├── CHANGELOG.md ├── LICENCE.txt ├── README.md ├── dub.json ├── examples ├── README.txt ├── hwclient.d ├── hwserver.d ├── identity.d ├── interrupt.d ├── lbbroker.d ├── lbbroker2.d ├── msgqueue.d ├── mspoller.d ├── msreader.d ├── mtrelay.d ├── mtserver.d ├── psenvpub.d ├── psenvsub.d ├── rrbroker.d ├── rrclient.d ├── rrworker.d ├── rtdealer.d ├── rtreq.d ├── start_pub_sub.d ├── syncpub.d ├── syncsub.d ├── tasksink.d ├── tasksink2.d ├── taskvent.d ├── taskwork.d ├── taskwork2.d ├── test_metadata.d ├── version.d ├── wuclient.d ├── wuproxy.d ├── wuserver.d └── zhelpers.d └── src └── zmqd.d /.builds/adm64-freebsd-ldc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/.builds/adm64-freebsd-ldc.yaml -------------------------------------------------------------------------------- /.builds/amd64-linux-dmd.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/.builds/amd64-linux-dmd.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .dub 3 | dub.selections.json 4 | /gh-pages 5 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/README.md -------------------------------------------------------------------------------- /dub.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/dub.json -------------------------------------------------------------------------------- /examples/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/README.txt -------------------------------------------------------------------------------- /examples/hwclient.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/hwclient.d -------------------------------------------------------------------------------- /examples/hwserver.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/hwserver.d -------------------------------------------------------------------------------- /examples/identity.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/identity.d -------------------------------------------------------------------------------- /examples/interrupt.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/interrupt.d -------------------------------------------------------------------------------- /examples/lbbroker.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/lbbroker.d -------------------------------------------------------------------------------- /examples/lbbroker2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/lbbroker2.d -------------------------------------------------------------------------------- /examples/msgqueue.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/msgqueue.d -------------------------------------------------------------------------------- /examples/mspoller.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/mspoller.d -------------------------------------------------------------------------------- /examples/msreader.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/msreader.d -------------------------------------------------------------------------------- /examples/mtrelay.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/mtrelay.d -------------------------------------------------------------------------------- /examples/mtserver.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/mtserver.d -------------------------------------------------------------------------------- /examples/psenvpub.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/psenvpub.d -------------------------------------------------------------------------------- /examples/psenvsub.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/psenvsub.d -------------------------------------------------------------------------------- /examples/rrbroker.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/rrbroker.d -------------------------------------------------------------------------------- /examples/rrclient.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/rrclient.d -------------------------------------------------------------------------------- /examples/rrworker.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/rrworker.d -------------------------------------------------------------------------------- /examples/rtdealer.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/rtdealer.d -------------------------------------------------------------------------------- /examples/rtreq.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/rtreq.d -------------------------------------------------------------------------------- /examples/start_pub_sub.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/start_pub_sub.d -------------------------------------------------------------------------------- /examples/syncpub.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/syncpub.d -------------------------------------------------------------------------------- /examples/syncsub.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/syncsub.d -------------------------------------------------------------------------------- /examples/tasksink.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/tasksink.d -------------------------------------------------------------------------------- /examples/tasksink2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/tasksink2.d -------------------------------------------------------------------------------- /examples/taskvent.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/taskvent.d -------------------------------------------------------------------------------- /examples/taskwork.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/taskwork.d -------------------------------------------------------------------------------- /examples/taskwork2.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/taskwork2.d -------------------------------------------------------------------------------- /examples/test_metadata.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/test_metadata.d -------------------------------------------------------------------------------- /examples/version.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/version.d -------------------------------------------------------------------------------- /examples/wuclient.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/wuclient.d -------------------------------------------------------------------------------- /examples/wuproxy.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/wuproxy.d -------------------------------------------------------------------------------- /examples/wuserver.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/wuserver.d -------------------------------------------------------------------------------- /examples/zhelpers.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/examples/zhelpers.d -------------------------------------------------------------------------------- /src/zmqd.d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kyllingstad/zmqd/HEAD/src/zmqd.d --------------------------------------------------------------------------------