The akka-zeromq tag has no wiki summary.
1
vote
1answer
116 views
“expected ';' at the end of declaration list” error for zeromq
I am using Mac, and i use homebrew to install zeromq. I want to use zeromq for my application. I tried to compile zmq.hpp https://github.com/zeromq/cppzmq/blob/master/zmq.hpp with
int main () {
...
1
vote
1answer
146 views
Akka ZeroMQ pub/sub creation order
Does the order matters for creating publisher and subscribers?
If i have application A, that acts as a publisher and several client-applications X1 - Xn (as subscribers to application A), can i first ...
0
votes
1answer
58 views
ZeroMQ on Heroku
Why doesn't it exist on Heroku?
I want to use Akka and a distributed queues system for actors to communicate on different dynos. RabbitMQ doesn't seem to be the best option using Akka, because a lot ...
0
votes
2answers
41 views
Akka-ZMQ subscriber creation error (poll)
I successfully created publisher but failed to create subscriber by using the following:
public static void main(String [] args)
{
ActorSystem system = ActorSystem.create("System");
...
0
votes
1answer
287 views
Akka-zeromq socket/actor won't receive messages
Questuion
I'm trying to implement a simple actor that will receive messages from zeromq using akka-zeromq.
import akka.actor._
import akka.zeromq._
class PullActor extends Actor {
def receive = {
...