Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mslinn/testpubsubkernels
Simplest possible ZeroMQ publisher and subscriber Akka mini-kernels
https://github.com/mslinn/testpubsubkernels
Last synced: 3 months ago
JSON representation
Simplest possible ZeroMQ publisher and subscriber Akka mini-kernels
- Host: GitHub
- URL: https://github.com/mslinn/testpubsubkernels
- Owner: mslinn
- Created: 2012-06-13T21:59:20.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2012-06-21T19:40:56.000Z (over 12 years ago)
- Last Synced: 2023-03-12T09:42:22.413Z (almost 2 years ago)
- Language: Scala
- Size: 121 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Minimal Akka kernels for testing ZeroMQ pub/sub.
Please see [zeromq-demo](https://github.com/mslinn/zeromq-demo) for instructions on building zeromq.Requires the following entry in `/etc/hosts`:
````
127.0.0.1 publisher subscriber
````To run, type the following into a console:
````
cd subKernel
sbt dist && run
````In another console, type:
````
cd pubKernel
sbt dist && run
````Beware that `sbt clean` is not thorough enough, and you should type the following in each console to properly clean out the projects and re-run them:
````
rm -rf target
sbt clean dist && run
````