I would like to use Akka actors in Java. I downloaded the akka-1.0.zip and added akka-actor-1.0.jar to my \"Build Path\" in Eclipse.
I have an actor that is delegating calls to a stateful singleton. The singleton is stateful since it is maintaining a map of objects. This singleton object is used just in the actor and in a class (no
Let\'s say I h开发者_开发知识库ave a supervisor that has linked 2 actors. When my app shutsdown I want to shutdown those actors gracefully. Does calling supervisor.shutdown() stop all the actors or do
We\'re going to develop a near-realtime event-driven application (backend and bunch of mobile clients).
I am trying to implement a dispatcher actor that either process the request or delegates the processing to another actor in case of failure (actually it is the exponential backoff algorithm). The disp
When using Akka actors, every actor created gets registered in an ActorRegistry. The ActorRegistry is a singleton, and allows for easy lookup and management (start, stop, ...) of all actors.
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 opinion-based. It is not currently accepting answers. 开发者_StackOverflow社区
I have a web application that loads a Spring context in the standard way: web.xml <context-param>
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