actor
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 分类:问答Which are the kind of applications/services/components where the Actors model (Scala, Erlang) is best suited for?
Besides the benefits of this model over the shared-memory model, I\'m just trying to understand where开发者_运维百科 to apply it for higher levels use-cases.As to Scala, Actors model fits most of the[详细]
2023-02-07 22:21 分类:问答Concurrency within Java EE environment
Goal My goal to better understand how concurrency within Java EE environment and how can I better consume it.[详细]
2023-02-06 05:30 分类:问答Scala Lazy Val Question
I have a scenario where I have some objects that need to take in references from each other.The only way I can get this to compile is to use lazy[详细]
2023-02-05 04:33 分类:问答Actors in Clojure
I am writing a utility in开发者_StackOverflow中文版 Scala that includes a \"file copy\" actor. I send file names to be copied and the actor does them one at a time.[详细]
2023-02-04 05:49 分类:问答
加载中,请稍侯......