Tagged Questions
1
vote
1answer
102 views
Does Akka Remoting support one-way only connections?
I have an Akka system running on an Android device, which talks to an Akka system on a server via Akka Remoting.
The Android device may get any IP address, the IP may change while the application ...
1
vote
1answer
46 views
Injecting special cases to Akka Serialization module
I want to add special cases to boost performance of any Akka serialization module, i.e. allowing for faster serialization of Array[Double] or any primitive types wrapped by the user. Is there a ...
0
votes
1answer
101 views
Routing Remote Actors: Peer not authenticated
I am I am trying to route remote actors following this example:
http://doc.akka.io/docs/akka/snapshot/scala/routing.html#Remotely_Deploying_Routees
Here is the code:
val system = ...
1
vote
2answers
559 views
Trying to get InetAddress.getLocalHost.getHostAddress (Java/Scala) to return external IP
So I'm having a problem with using InetAddress.getLocalHost.getHostAddress to get the external IP address of a given machine.
I'm actually doing this in Scala in a sense - the configuration file for ...
2
votes
1answer
191 views
What's the minimal code required to have two local instances communicate with Akka actors?
I wonder what's the minimal code required to start two instances of an application on a machine, which can send to and receive messages from each other.
As far as I understand, I would need
to ...
1
vote
1answer
1k views
How to send messages between Akka remote actors?
I want to build a very simple chat application which should work without some central server using Akka remote actors.
I basically want to start up one instance of the application with IP address A.
...
3
votes
1answer
1k views
Porting simple Scala remote actor example to Akka actors
I try to port this simple actor example of sending "Ping" and "Pong" from Scala actors to Akka actors, but I keep getting errors and I wonder if it is just a simple error or some fundamental fault.
...