actor
Sending a None back to the caller from an Actor
I have a simple Actor that queries a database using ScalaQuery, which I\'ve mocked for a test of a client using it.[详细]
2023-04-04 20:23 分类:问答How to Cancel an Akka actor?
I have an akka actor(worker) that receives a request and replies to it. The request processing can take 3-60 minutes. Caller(also an actor) is currently using !!! and waiting on future.get, however th[详细]
2023-04-04 17:24 分类:问答Scala, Actors, what happens to unread inbox messages?
What happens to unread inbox messages in Scala Actors? For example two cases:1.If forget to implement react case for special message: actor!NoReactCaseMessage2. If messages comes too fast: (timeOfProc[详细]
2023-04-01 07:36 分类:问答Scala : how to start an actor in array?
I\'m trying to write a simple client/server chat application in 2 languages - Java and Scala. Java version is working and the only problem is to translate it.[详细]
2023-04-01 00:12 分类:问答How to implement asynchronous interdependent cancellable operations with actors?
开发者_如何学CI am quite new to the Actor model, that\'s why I think there are already established patterns addressing my common-looking scenario with such beautiful composable abstractions as actors[详细]
2023-03-31 18:47 分类:问答Actors implementation built on C++0x thread standard
I\'m a little disappointed to find that the C++0x concurrency standard doesn\'t seem to 开发者_StackOverflowhave any native support for a message-passing Actors model.[详细]
2023-03-31 15:35 分类:问答Distributed Actors in Akka
I\'m fairly new to Akka and new to distributed programming in general.Using Akka\'s Mist component, I\'ve created supervised actors to handle HTTP requests asynchronously.Everything is currently runni[详细]
2023-03-31 05:18 分类:问答Can Actors reply, which uses a thread local variable, cause a bug?
I not开发者_如何转开发iced that Actor reply invokes the reply method of a thread local variable of ReplyReactor type (see private methodrawSelf). This reply method sends a message to the senders.head,[详细]
2023-03-28 17:30 分类:问答When one should call resetProxy and clearSelf methods of Actor?
This is a followup of my previous question. When one should invoke resetProxy and clearSelfof Actor ? W开发者_Go百科hat are they actually useful for?These methods are used when a \"regular\" thread ([详细]
2023-03-27 23:52 分类:问答Does Producer/Consumer model equal Actor?
So lately I\'ve been reading a lot of article about how concurrent programming is hard, and how concurrent programming with shared state is near impossible.So languages like Erlang (I think this is on[详细]
2023-03-26 21:38 分类:问答
加载中,请稍侯......