Ok so i am writing implicit conversions for case classes in scala, using SJSON, to send messages to remote actors 开发者_开发问答using the akka framework. One of the case classes looks like this
Can an Akka anonymous actor have access to self? In my particular case I\'m wondering if I can reply back to the sender with code similar to this (does not compile due to self not being found):
We\'re developing a server system in Scala + Akka for a game that will serve clients in Android, iPhone, and Second Life.There are parts of this server that need to be highly available, running on mul
I have a Scala application using Akka that receives REST requests, makes some operations against a database, and responds with some information to the client. As it is, my db operations take a long ti
There are a huge amount of tasks. Each task is belong to a single group. The requirement is each group of tasks should executed serially just like executed in a single thread and the throughput should
Is there a design documen开发者_如何学JAVAt for Scala 2.8 Actors, like it is for 2.7? Scala Actors: Unifying Thread-based and Event-based Programming
We have some code which needs to run faster. Its already profiled so we would like to make use of multiple threads. Usually I would setup an in memory queue, and have a number of threads taking jobs o
We\'re looking at using actors in our Scala code quite soon. We\'re also thinking of moving to Scala 2.8 in the next few weeks. We\'ve been keeping an eye on Akka but it doesn\'t currently support 2.8
I\'ve implemented a Listenable/Listener trait that can be added to Actors. I\'m wondering if it\'s possible to attach this styl开发者_运维知识库e of trait to an actor without it having to explicitly c