9
votes
2answers
448 views
Scala actors: receive vs react
Let me first say that I have quite a lot of Java experience, but have only recently become interested in functional languages. Recently I've started looking at Scala, which seems l …
8
votes
1answer
244 views
What does the remote-actor framework do if trying to write to a client which is no longer there?
I have a server which is using the remote actors framework to communicate with multiple clients. As mentioned in this question, I am having trouble keeping track of when a client d …
8
votes
3answers
199 views
How does Erlang’s support for *transparent* distribution of actors impact application design?
One of the features of the actor model in Erlang is transparent distribution. Unless I'm misinterpreting, when you send messages between actors, you theoretically shouldn't assume …
8
votes
4answers
445 views
Unit testing scala actors
Anyone know of a good way to unit test Scala actors? In the general sense I have an actor that receives a message and will send out other messages in response. This is done on mult …
6
votes
2answers
207 views
Scala Remote Actor Security
What is the (or a) recommended way to implement security for Scala Remote Actors (authentication of remote nodes allowed to speak to this actor, and encryption of the contents of t …
6
votes
1answer
380 views
Using scala actor framework as fork-join computation?
Is it possible, in theory, to use the Scala Actor Framework to do a kind of asynchronous divide-and-conquer computation similarly to JDK 7's Fork-Join framework? If so, how could I …
6
votes
3answers
384 views
Can Scala actors process multiple messages simultaneously?
The reply to a recent question of mine indicated that an actor processed its messages one at a time. Is this true? I see nothing that explicitly says that (in Programming in Scala) …
5
votes
2answers
227 views
Scala Actors - Worst practices?
Hi,
I feel a bit insecure about using actors in Scala.
I have read documentation about how to do stuff..but I guess I would also need some DON'T rules in order to feel free to us …
5
votes
1answer
111 views
Is it reasonable to view highly autonomous actors as agents?
Coming from an academic background in mutli-agent systems (developed in Java using JADE) I have only been peripherally aware of the Actor concurrency paradigm. Now that I've starte …
5
votes
1answer
133 views
How is Scala “filling in” missing arguments to a case class?
When I call:
actor_ ! Exit
How is this being converted into a construction of:
case class Exit(from: AbstractActor, reason: AnyRef)
In particular, how is it that when I call …
5
votes
4answers
303 views
Processing concurrently in Scala
As in my own answer to my own question, I have the situation whereby I am processing a large number of events which arrive on a queue. Each event is handled in exactly the same man …
5
votes
2answers
587 views
Design patterns for Agent / Actor based concurrent design.
Recently i have been getting into alternative languages that support an actor/agent/shared nothing architecture - ie. scala, clojure etc (clojure also supports shared state).
So f …
4
votes
2answers
229 views
Writing applications with Scala actors in practice
I've now written a few applications using scala actors and I'm interested in how people have approached or dealt with some of the problems I've encountered.
A plethora of Message …
4
votes
2answers
350 views
Migrating from Java concurrency to Scala concurrency
I have a fairly standard mechanism in Java for solving the problem:
Work items must be scheduled to execute at a particular time
Each work item must then wait on a condition bec …
4
votes
2answers
346 views
Message Passing Concurrency Library for C?
I've been looking around, but I can't seem to find a message-passing concurrency (Actor) library for C (not C++). Ideally the candidate would be based on something like libevent un …
