remote-actors
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[详细]
2023-04-10 22:54 分类:问答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 creat[详细]
2023-02-10 11:04 分类:问答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(开发者_Go百科) method with the second actor as parameter. In this case when[详细]
2023-01-27 05:28 分类:问答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 de[详细]
2023-01-22 16:31 分类:问答Why is setting the classloader necessary with Scala RemoteActors?
When using Scala RemoteActors I was getting a Clas开发者_开发技巧sNotFoundException that referred to scala.actors.remote.NetKernel. I copied someone else\'s example and added RemoteActor.classLoader =[详细]
2023-01-12 09:51 分类:问答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[详细]
2023-01-08 19:27 分类:问答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.[详细]
2023-01-07 09:27 分类:问答a scala remote actor exception
i with a scala code like this for echo service. import scala.actors.Actor import scala.actors.Actor._ import scala.actors.remote.RemoteActor._[详细]
2022-12-28 18:21 分类:问答