Tagged Questions
1
vote
1answer
150 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
289 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 = {
...