The actor tag has no wiki summary.
33
votes
3answers
6k views
How does LMAX's disruptor pattern work?
http://code.google.com/p/disruptor/
I am trying to understand the disruptor pattern. I have watched the infoq video and tried to read their paper. I understand there is a ring buffer involved, that ...
11
votes
5answers
461 views
How is “become” implemented in languages that support the actor model?
The actor model is nicely described by Gul Agha on his technical report, "Actors: a model of concurrent computation in distributed systems".
On page 49 he explains the "become" command:
become ...
8
votes
2answers
659 views
is there any scala network library with actor model
hi all
i'm now to scala. i need a network library with actor model.
or the best choise is java.nio?
7
votes
4answers
650 views
Which ThreadPool in Java should I use?
There are a huge amount of tasks.
Each task is belong to a single group. The requirement is each group of tasks should executed serially just like executed in a single thread and the throughput should ...
6
votes
1answer
120 views
gc of a larger number of scala actor
if i want to implement am http server.
i create new actor per request. So it can scale up as my cpu updated.
but will it cause memory usage problem? it is said that actor have some strange ...
6
votes
2answers
199 views
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: ...
6
votes
2answers
276 views
how to cancel ConsoleReader.readLine()
first of all, i'm learning scala and new to the java world.
I want to create a console and run this console as a service that you could start and stop.
I was able to run a ConsoleReader into an Actor ...
6
votes
1answer
419 views
Scala actors exception “react on channel belonging to other actor”
Given the following code:
class A extends Actor {
def act() {
loop {
reactWithin(1000) {
case _ => println("A Message")
}
}
}
}
and
class B extends A {
val ...
5
votes
1answer
511 views
Scala 2.8 Actor design document? Akka design document?
Is there a design document for Scala 2.8 Actors, like it is for 2.7?
Scala Actors: Unifying Thread-based and Event-based Programming
Is there one for Akka?
The "Scala Improvement Documents Library" ...
4
votes
1answer
134 views
Scala variable binding when used with Actors
I am fairly new to Scala.
I am trying to understand how/if scala does dynamic binding when a closure is passed as part of a message to an Actor.
I am using Akka 1.2 with Scala 2.9.
I have the ...
4
votes
1answer
147 views
Scala actors: two different approaches to a scheduled multi-thread application
I'm new to Scala Actors. What I plan to build is an application that has several cartridges that each do a specific http call and retrieve+persist some info periodically. Robustness is what matters ...
4
votes
2answers
383 views
Make Scala Remote Actors more stable
I was writing a little test program to try out some things with Remote Actors that I was going to need in a Scala project.
The basic goal was to write a test application of one server that could ...
4
votes
2answers
1k views
Simple Scala actor question
I'm sure this is a very simple question, but embarrassed to say I can't get my head around it:
I have a list of values in Scala.
I would like to use use actors to make some (external) calls with each ...
3
votes
2answers
98 views
Inconsistent behavior between local actor and remote actor
This is sort of a follow up to an earlier question at Scala variable binding when used with Actors
Against others' advice, I decided to make a message containing a closure and mutate the variable ...
3
votes
1answer
91 views
Are seda and the actor model essentially equivalent?
SEDA is essentially a set of independent "services" that communicate with each other via queues, which could further be abstracted as message passing.
The actor model is a set of independent ...
3
votes
1answer
122 views
Akka - Creating an actor using reflection
I need to create an actor whose exact type is only read at runtime from a configuration file. The constructor for that actor is non trivial, i.e. it requires some parameters which are defined in the ...
3
votes
2answers
123 views
Scala actor: receiveWithin() doesn't receive messages
I'm building an actor-based service in Scala where consumers can query whether clients are authorized and can also authorize clients.
If a consumer queries the authorization state of a client and ...
3
votes
1answer
104 views
Why the scala actor message queue have no bound(size)
def append(msg: Msg, session: OutputChannel[Any]) {
changeSize(1) // size always increases by 1
val el = new MQueueElement(msg, session)
if (isEmpty) first = el
else last.next = el
...
3
votes
1answer
274 views
Using Mokito to mock out an Akka Actor's log object
I've tried a couple of things which seem to compile but throw NullPointer exceptions during unit testing so I'm wondering how I could potentially overcome the limitations in unit-testing. I have a ...
3
votes
2answers
262 views
scala actors: drop messages if queue is too long?
I would like to drop messages from an actor's mailbox if it becomes too full. For example, if the queue size reaches 1000 messages, the oldest one should be deleted.
3
votes
1answer
415 views
Akka and state among actors in cluster
I am working on my bc thesis project which should be a Minecraft server written in scala and Akka. The server should be easily deployable in the cloud or onto a cluster (not sure whether i use proper ...
2
votes
3answers
123 views
Scala: Do you know any advanced Actors docs / tutorials?
i've been working with Scala for some time and i've started to take a deeper look into concurrency. With my knowldege of Java concurrency i've achieved the simple things I had to do, but i'm trying to ...
2
votes
2answers
90 views
Scala actors left hanging
I am spawning a small number of actors to fetch, process and save RSS feed items to a database. This is done through a main method of an object running on cron. I create these actors and dole out jobs ...
2
votes
2answers
39 views
C++ How to keep track of local variables/objects
Firstly, i am sorry if the title does not properly describe my problem, but i could not think of a better one. =/
I am trying to make a game where all entities that I need to draw on the screen are ...
2
votes
2answers
162 views
Scala Actors: Is there a built-in way to stop/ interrupt an actor?
In Java I have a hobby with thread, for example:
Thread thread = new Thread() {
@Override
public void run() {
//use this while loop, I can stop/ interrupt the thread when I want
while ...
2
votes
1answer
95 views
fork and join using Akka
problem statement: I have a portfolio of securities that need to be processed in a parallel fashion. In Java i used a threadpool to process each security, and use a latch to countdown. Once complete I ...
2
votes
2answers
89 views
Can an actor send a message to an actor of another application running on the same machine at the same time?
I am interested in writing 2 actor-based Scala applications, one of them needing to send data to another one running on the same machine at the same time. Is there a way to send actor messages between ...
2
votes
1answer
402 views
Porting simple Scala remote actor example to Akka actors
I try to port this simple actor example of sending "Ping" and "Pong" from Scala actors to Akka actors, but I keep getting errors and I wonder if it is just a simple error or some fundamental fault.
...
2
votes
2answers
218 views
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 ...
2
votes
1answer
104 views
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 ...
2
votes
1answer
389 views
scala doesn't like self variable in akka?
import actors.Actor
import akka.actor.Actor._
class HelloWorldActor extends Actor {
def receive = {
case msg => self reply (msg + "world")
}
}
remote.start("localhost",9999).register(
...
2
votes
1answer
496 views
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.
In an ...
2
votes
2answers
372 views
scala actor message definition
Do i need to define class for message i want to retrieve on a scala actor?
i trying to get this up
where am i wrong
def act() {
loop {
react {
case Meet => foundMeet = ...
2
votes
5answers
962 views
In Erlang is there any way that a message sender can wait on a response?
In Erlang is there any way that a message sender can wait on a response, so it only continues execution once the message has been processed?
And I mean something like this:
Actor ! DoSomething
...
1
vote
1answer
63 views
How to get Some(x) from the results of Futures#awaitAll?
all.
I wrote the following simple code to test scala.actors._:
// java version "1.7.0_02"
// Scala code runner version 2.9.1.final
// Windows 7 Ultimate sp1 64-bit
import scala.actors._
import ...
1
vote
2answers
87 views
Is there a way to see what a wildcard pattern is receiving during a match in Scala?
When doing pattern matching in an Akka or Scala Actor, is there a way to see what the match was NOT (i.e.) what is being evaluated by the wildcard _? Is there a simple way to see which message is ...
1
vote
1answer
67 views
Scala Actors Send Message to Super Class
I'm trying to make a base class that uses actors, kind of like so:
import scala.actors.Actor
case class FooBar()
class ParentActor extends Actor {
def act {
loop {
react {
case ...
1
vote
2answers
159 views
Actors (scala/akka): is it implied that the receive method will be accessed in a threadsafe manner?
I assume that the messages will be received and processed in a threadsafe manner. However, I have been reading (some) akka/scala docs but I didn't encounter the keyword 'threadsafe' yet.
1
vote
1answer
99 views
Ruby concurrency, Revactor vs Process Forking
I am contemplating two different methods of introducing concurrency to a Ruby program. I am currently forking the process, and having the forks communicate via the database.
I have recently found ...
1
vote
2answers
167 views
Scala-Actors, is it good practice to avoid memory leaks?
All started with question "Scala, Actors, what happens to unread inbox messages?". I was thinking how to avoid such problems in large system with many actors.
I found myself writing something like ...
1
vote
2answers
123 views
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.
In Java i have code like this:
import ...
1
vote
1answer
91 views
Actors case class simple example
I'm almost certainly doing something profoundly stupid which makes this actor not work properly, but I can't see it after a chunk of time staring at it. So I thought I'd ask SO.
I can't get this code ...
1
vote
1answer
127 views
Scala Actor subclass can't access mailboxSize?
I have some code like this:
package something
import scala.actors.Actor
import scala.actors.Actor._
class Foo extends Actor {
private val random = new Random()
def doWork() {
if ...
1
vote
1answer
90 views
Dying Actors in Rubinius or are threads/processes sandboxed?
I am looking into Rubinius (2.0+) and its actors library for parallel computing challenges.
I am wondering what would happen if an actor for example eats up loads and loads
of memory up to the point ...
1
vote
2answers
78 views
Subsequent Call to Actor Freezes Program
I put together the code below; the intent was to have a non-blocking server accept a connection and then pass off this connection to an actor for further processing. This works the first time through, ...
1
vote
2answers
162 views
remote actor work only on localhost
I wrote a program using Scala's remote actors. My first step was to create a client and a server who communicate by loopback (127.0.0.1) and it works well. When I try to communicate between two ...
1
vote
2answers
205 views
remote Actor doesn't work on Android -> stack overflow
I'm currently testing remote actors on Android. I have done a small program with two classes: the first implements the main activity and the second implements an actor.
When I create my actor, the ...
1
vote
1answer
161 views
How do you get an object associated with a Future Actor?
I would like to be able to get access to the object that is being returned from spawning a future
import scala.actors.Future
import scala.actors.Futures._
class Object1(i:Int) {
def getAValue(): ...
1
vote
2answers
346 views
scala lift actor, error: type mismatch;
Greetings
I'm using the scala version 2.8.0 and version 2.1 of lift to compile my project with maven I mark the following error:
error: type mismatch;
[INFO] required: **scala.actors.Actor**
...
1
vote
1answer
221 views
Actor-model library, framework, or language written in C?
The Actor-model was defined in a 1973 paper by Carl Hewitt, but has been popularized by the Erlang language. I believe the parts of Erlang that aren't self-hosted (written in Erlang) are written in C; ...