akka
How can I use Akka Actors in a Java application?
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.[详细]
2023-02-15 22:36 分类:问答Use singletons in akka scala actor
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[详细]
2023-02-14 13:50 分类:问答In AKKA does calling shutdown on a supervisor stop all the actors it's supervising?
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[详细]
2023-02-12 03:53 分类:问答Is Google App Engine suitable for near-realtime event-driven application?
We\'re going to develop a near-realtime event-driven application (backend and bunch of mobile clients).[详细]
2023-02-12 02:58 分类:问答Scala actors and shared state
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[详细]
2023-02-09 23:40 分类:问答How to achieve true application modularity using Akka in OSGi bundles?
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.[详细]
2023-02-09 18:51 分类:问答Akka Actors: Need an example to understand some basics
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[详细]
2023-02-02 15:52 分类:问答What are the best use cases for Akka framework [closed]
Closed. This question is opinion-based. It is not currently accepting answers. 开发者_StackOverflow社区[详细]
2023-01-31 06:46 分类:问答Get hold of a Listener loaded the Spring context
I have a web application that loads a Spring context in the standard way: web.xml <context-param>[详细]
2023-01-31 06:37 分类:问答Actors: How to efficiently handle read-mostly data
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[详细]
2023-01-28 04:05 分类:问答