Tagged Questions
The remote-actors tag has no wiki summary.
12
votes
2answers
571 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 ...
10
votes
1answer
578 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 ...
7
votes
2answers
364 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 ...
6
votes
1answer
171 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 ...
5
votes
2answers
125 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" ...
5
votes
2answers
287 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() {
...
4
votes
2answers
1k 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
1answer
473 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 = ...
4
votes
1answer
558 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 ...
4
votes
2answers
245 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, ...
3
votes
3answers
386 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
}
...
3
votes
1answer
294 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 ...
2
votes
1answer
91 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 ...
2
votes
2answers
209 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
378 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 ...
1
vote
1answer
79 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 ...
1
vote
1answer
122 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.
...
0
votes
1answer
110 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 ...
0
votes
1answer
47 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. ...