This question bothers me for some time now (I hope I\'m not the only one). I want to take a typical 3-tier Java EE app and see how it possibly can look like implemented with actors. I would like to fi
I\'m experimenting with a map of actors, and would like to know how to instantiate them and start them in one fell swoop...
I\'m tinkering with Akka and need some advice how to implement something specific i have in mind. I want to have an actor which i can send a DownloadFile(URI, File) message and downloads it. Since thi
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.
I would开发者_JS百科 like to use remote actors, of a nature, not known to the server at it\'s compile time, so that this actors will be defined on the client side only. Is it possible? Normally, it\'s
In scala it is very easy to make a connection to a remote actor, but the documentation does not tell me anything about disconnecting. Simply throwing away the reference does not work, because remote a
Suppose I have an actor that has a single field.开发者_如何转开发 99 out of every 100 messages to an actor read the value, and the 100th updates the value. In this case, I would like to process reads
I\'ve designed an application based on the actor model pattern utilizing the spring application context events as the way to pass messages .
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
I need to build very concurrent web service which will expose REST based API for JavaScript (front end) and Rails (back end). Web service will be suiting data access API to MongoDB.