actor
Transferring typical 3-tier architecture to actors
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[详细]
2023-02-04 05:39 分类:问答Instantiating and starting a Scala Actor in a Map
I\'m experimenting with a map of actors, and would like to know how to instantiate them and start them in one fell swoop...[详细]
2023-02-03 06:58 分类:问答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 分类:问答[Scala]: Problem with Actors and blocking IO [closed]
Closed. This question is not reproducible or was caused by typos. It is not currently accepting answers.[详细]
2023-02-01 05:12 分类:问答Is it needed to have the code for remote scala actor on the server?
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[详细]
2023-01-29 17:07 分类:问答How do I disconnect a Scala Remote Actor?
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[详细]
2023-01-28 07:01 分类:问答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 分类:问答Actor model pattern : Limiting number of concurrent running actors
I\'ve designed an application based on the actor model pattern utilizing the spring application context events as the way to pass messages .[详细]
2023-01-28 02:46 分类:问答How to discover that a Scala remote actor is died?
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[详细]
2023-01-27 05:28 分类:问答What actor based web frameworks are available for Scala?
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.[详细]
2023-01-26 03:26 分类:问答