The remote-actors tag has no wiki summary.
1
vote
1answer
157 views
Wait for akka actor system to become available
I am using AKKA 2.1 with Scala 2.10.
I need multiple machines to start actor systems and instantiate some number of actors. After this, each system needs to access all other systems and collect ...
1
vote
2answers
889 views
Akka 2.1 minimal remote actor example
EDIT Notice, I needed to make the reverse changes of this https://github.com/akka/akka/commit/ce014ece3568938b2036c4ccfd21b92faba69607#L13L6 to make the accepted answer work with AKKA 2.1 which is the ...
2
votes
2answers
182 views
Akka 2.1 Remote: sharing actor across systems
I'm learnin about remote actors in Akka 2.1 and I tried to adapt the counter example provided by Typesafe.
I implemented a quick'n'dirty UI from the console to send ticks. And to quit with asking(and ...
1
vote
0answers
125 views
Simple remote actor/server: Local client wont stop
Started using scala and really like the language, but I seem to have a hard time understanding how actors work. I previously did a lot of my remote stuff using NIO, but now I want to try scala's ...
0
votes
2answers
146 views
How can we override the react construct of scala actors?
The usual way of detecting the type of message received in scala actors is by
loop{
react{
case x: String =>
}
}
However, I want to know how can we override ...
3
votes
2answers
222 views
From where we get sender actor when a particular message is received?
Whenever an actor receives a message in scala, we can access the sender of the actor by using a keyword 'sender' which is an an object of trait AbstractActor.
My question how is this 'sender' ...
1
vote
1answer
241 views
Scala akka ActorFor path
Here is my code for finding an actor on my remote system:
Application.system.actorFor("akka://ActorApplication@172.17.100.232:2552/home/louis/scala/remoteActor")
I think I have the wrong path ...
0
votes
1answer
486 views
Failure to Bind to a Remote IP Address for Akka Actor System
I was having trouble with initializing an actor system on a remote IP address. I am using akka actors and the play! framework. The code and the remote actor system are both on the remote rackspace ...
0
votes
1answer
176 views
Scala remote actors on same machine
I am new to scala and trying to use the Actor model.
I have worked my way with using actors on the same machine.
Now, I want to use remote actors to go a step further.
As I have only one box to play ...
1
vote
1answer
113 views
Is there a way to obtain the ip address of a remote actor?
I was wondering if there was a way to obtain the ip address of a remote akka actor because currently I am using a broadcast ip address to set up the actor system (this is the only one that seems to ...
0
votes
1answer
372 views
Actor Name is not Unique InvalidActorNameException
My environment is eclipse, play, akka, and scala. I am getting an error when trying to create a remote master akka actor.
I am not sure why I am getting this error: [InvalidActorNameException: actor ...
0
votes
1answer
109 views
Scala RemoteActor multiple network interfaces
Method alive(port) in RemoteActor does not take IP address as parameter.
It constructs internally a TcpService object which assings the IP address by calling Java's ...
1
vote
1answer
203 views
Extending Abstract Remote Actors and Pattern Matching (ClassLoading?) in Scala
I'm implementing some abstract classes that extend Actor and provide some extra functionality [1]. However, pattern matching doesn't seem to be working within the receive statements. If I send a ...
6
votes
2answers
527 views
NoClassDefFoundError when running Scala jar file
I have a small application with RemoteActors, and I want to make a jar file from it. When I try to execute it it gets this exception:
Exception in thread "main" ...
0
votes
1answer
258 views
Using RemoteActors without future/ask
I'd like to send a message from an Actor on the client side asynchronously (!) and return a message to the Actor from the server. The key is that I do not want to use (?) and get a Future.
I've got ...
2
votes
1answer
223 views
Reply is not transmitted back to the 'client'-actor
I've an unexpected behavior when using remote actors. I've a server and a 'client'. The client sends a message to the server actor and the server replies. When I use the '?' operator everything works ...
0
votes
1answer
175 views
How to implement authentication using remote actors?
I'm working on a card game and it seems like actors - specifically remote actors - would be a good fit. I'm having trouble figuring out how to implement the notion of logging in using remote actors. ...
4
votes
2answers
801 views
scala class serialization, impossible to fix SerialVersionUID
I'm currently testing remote actors to communicate between Android and Windows. Actors remote sends differents classes where I set the serialVersionUID.
This is the code of my serialized class:
...
2
votes
1answer
777 views
Scala server needs to manage many clients
We need to create a Server with Scala RemotActors, that can handle multiple clients. Eg a chat server that replies every received message back to all connected clients. Our current attempt is to ...
7
votes
2answers
801 views
How to discover that a Scala remote actor is died?
In Scala, an actor can be notified when another (remote) actor terminates by setting the trapExit flag and invoking the link() method with the second actor as parameter. In this case when the remote ...
14
votes
2answers
792 views
Advanced book on Scala 2.8
Christmas is coming along fast and I want to put up a Scala book on my wishlist. However, I consider myself a medium++ user of Scala after using it on and off for almost a year. I am a major in ...
6
votes
2answers
3k views
Why are case objects serializable and case classes not?
I am playing with this example http://scala.sygneca.com/code/remoteactors to learn how remote actors work in Scala (2.8.0). In particular I slightly modified how the messages send by the actors are ...
4
votes
3answers
598 views
How to terminate Scala Remote Actor client?
I'm playing with Remote Actors but I'm facing some difficulties.
Consider this server:
object Server {
def main(args: Array[String]) {
val server = new Server
server.start
}
...
5
votes
1answer
814 views
Why is setting the classloader necessary with Scala RemoteActors?
When using Scala RemoteActors I was getting a ClassNotFoundException that referred to scala.actors.remote.NetKernel. I copied someone else's example and added RemoteActor.classLoader = ...
5
votes
1answer
829 views
Scala Remote Actors - Pitfalls
While writing Scala RemoteActor code, I noticed some pitfalls:
RemoteActor.classLoader = getClass().getClassLoader() has to be set in order to avoid "java.lang.ClassNotFoundException"
link doesn't ...
1
vote
1answer
158 views
RemoteActor.select - result deterministic?
I wonder if there is any determinism when calling val delegate = RemoteActor.select().
I'm asking this, because I noticed that the program doesn't terminate, when I'm sending delegates over the net.
...
3
votes
1answer
382 views
RemoteActor unregister actor
I'm playing with RemoteActors. Now I wonder, what happens if I shut down an RemoteActor.
The actor was made available with RemoteActor.alive and RemoteActor.register.
I can't find the inverse of ...
5
votes
2answers
365 views
a scala remote actor exception
hi all
i with a scala code like this for echo service.
import scala.actors.Actor
import scala.actors.Actor._
import scala.actors.remote.RemoteActor._
class Echo extends Actor {
def act() {
...
6
votes
1answer
182 views
How is Scala “filling in” missing arguments to a case class?
When I call:
actor_ ! Exit
How is this being converted into a construction of:
case class Exit(from: AbstractActor, reason: AnyRef)
In particular, how is it that when I call this from a remote ...
10
votes
1answer
608 views
What does the remote-actor framework do if trying to write to a client which is no longer there?
I have a server which is using the remote actors framework to communicate with multiple clients. As mentioned in this question, I am having trouble keeping track of when a client disappears. Hence my ...
4
votes
2answers
290 views
How can I identify a remote actor?
I have a remote actor (client) which is registering with another remote actor (server) and then later deregistering (with a shutdown hook). However, although the server picks up the de-registration, ...