[akka-user] Send messgae to actor from standalone program

2014-12-16 Thread padma priya chitturi
Hi, I have 2 node cluster setup and I am running two actors on the 2 nodes. Now i have a stanadlone program on node1 which should actually send the message to actor running on node1. How to do this ? Regards, Padma Ch -- >> Read the docs: http://akka.io/docs/ >>

Re: [akka-user] Send messgae to actor from standalone program

2014-12-16 Thread Martynas Mickevičius
Hi Padma, did you mean you want to send message from node1 to node2? You can always use ActorSelection to lookup actors on any node if you know the full path (including the hostname) to the actor. Oth