Programming model distinguished by ubiquitous asynchronous communication.
0
votes
1answer
42 views
save result of vtkDistancePolyDataFilter as .vtk
I am working with vtkDistancePolyDataFilter and I want to save the result as a .vtk file.
The result is correct, I can display it with vtkRenderer. But I can't save it with a vtk writer, because they ...
1
vote
1answer
112 views
How do I run HTTP requests from a pool of threads using Celluloid?
I'm using Ruby 1.9.3, and testing it on Mac OSX 10.7.
I have a Sender class which is supposed to send requests to some URL:
require "celluloid"
require "curb"
class Sender
include Celluloid
...
5
votes
1answer
704 views
Relation between Akka and scala.actors in 2.10
The Scala 2.10 release notes says this: "Akka Actors now part of the distribution. The original Scala actors are now deprecated."
The latest Akka library ("Akka 2.1.0 for Scala 2.10") mentions the ...
0
votes
2answers
271 views
Akka 2.1 exception handling (Scala)
I have a supervising Akka actor which uses a router to forward messages to worker actors.
I have a class which wraps the supervisor and when I call a method on that class it "asks" the supervisor to ...
1
vote
2answers
171 views
How to manage actor shutdown in a singleton ActorSystem
I have a singleton actor system in my application, and this works perfectly fine except that when the same application is loaded and unloaded inside the same JVM for testing, I have an error because I ...
2
votes
2answers
177 views
Akka 2.1 Remote: sharing actor across systems
I'm learnin about remote actors in Akka 2.1 and I tried to adapt the counter example provided by Typesafe.
I implemented a quick'n'dirty UI from the console to send ticks. And to quit with asking(and ...
0
votes
3answers
111 views
Proper way to terminate Scala Actor that only generates messages
I'm completely new to this, but here's a Scala actor that's created with my class and only lives to generate messages for other actors. I would like it to wake up every second, gather some metrics, ...
0
votes
1answer
567 views
AnnoyingCritter GridWorld Case Study
I'm in APCS and I have to make an extension of the critter class that will make a critter randomly select any actor in the grid and then move to its location; thereby "following" it. My teacher gave ...
2
votes
2answers
53 views
Make an Actor repeat itself for a racing theme
I'm new to GameSalad. I have a background that is plain black an actor called "Road_Line". I want this actor to repeat itself on the screen to give the feeling of driving on a road.
How can this be ...
1
vote
1answer
192 views
Simple explanation of Akka Actors
Is the following statement correct, otherwise how can it be improved?
When an Akka actor is sent a message, a job is submitted to the executor.
When there is a free thread, it calls the job ...
2
votes
1answer
183 views
Create akka system where all actors have references to each other [closed]
I want to create a program that starts multiple process on multiple machines in a homogenous environment on a cluster computer.
I want to use Akka 2.1 which ships with Scala 2.10.
What would be the ...
3
votes
1answer
296 views
Akka remote actors cannot communicate between Play! applications
I am testing usage of Akka remote actors between two Play! v2.1-RC4 applications.
Here is my code from App1
override def onStart( app: Application ) {
val system = ActorSystem("App1System", ...
0
votes
1answer
26 views
what is the difference between producer and regular actor?
akka doc (http://doc.akka.io/docs/akka/2.1.0/scala/camel.html) shows that camel procedure is an actor:
class Orders extends Actor with Producer with Oneway {
def endpointUri = "jms:queue:Orders"
...
0
votes
1answer
49 views
what is difference between regular Akka actor and Camel consumer actor?
A regular Akka actor is associated with a mailbox and dispather(thread pool), which can be set by configuration or programmatically. you can look up regular actor through path.
regular actor dequeue ...
1
vote
2answers
91 views
Select remote actor on random port
In Scala, if I register a remote actor using alive(0), the actor is registered at a random port.
I can do the registration like this: register('fooParActor, self) in the act method.
Now, on the ...
1
vote
1answer
131 views
how to tell akka actor sends message to other actor's mailbox successfully? [closed]
here is the scenario in my mission critical application:
Actor A does some resource intense work, then sends a message to actor B on another physical unix box. B is accessing external network elements ...
4
votes
2answers
377 views
why is scala actors deprecated in 2.10?
I was just comparing different scala actor implementations and now I'm wondering what could have been the motivation to deprecate the existing scala actor implementation in 2.10 and replace the ...
4
votes
2answers
209 views
Pausing an actor in Akka
I have an actor in Akka that will process messages to create certain entities. Some fields on these entities are computed based on the state of other entities in the database at the moment of ...
3
votes
5answers
243 views
In which way is akka real-time?
At a couple of places there is state that akka is somehow "real-time". E.g.:
http://doc.akka.io/docs/akka/2.0/intro/what-is-akka.html
Unfortunately I was not able to find a deeper explanation in ...
0
votes
3answers
212 views
Scala Actor Example: Expected Type was:?
guided by some Tutorials I've been trying to get a simple Scala Actor example working where i send a (String-)message to an actor and that actor replies with an output to the console.
My code is:
...
0
votes
1answer
117 views
Can I add an actor to the back layer in Libgdx?
I am making a game in Libgdx and I have a little problem. I have a number of actors that show up on the screen dynamically. If there is an Image actor that shows up after the first, could I send it to ...
0
votes
1answer
43 views
Actor Exception
I just want to send some messages between 2 actors in Groovy.
I receive the first messages abc, but get then the following exception:
An exception occurred in the Actor thread Actor Thread 1
...
3
votes
0answers
262 views
Akka Socket per actor
Using Scala with Akka IO is there a way to have an Actor strictly for listening and then when a connection is established create a new actor that will then be responsible for that Socket (Reading, ...
2
votes
1answer
95 views
How does Akka handle message versions?
How does Akka handle the serialization of different versions of messages of the same type, but different versions? For example, can an Actor X that expects version 1 of message A receive and process ...
1
vote
1answer
98 views
Actor/message-passing within threaded Game “event loop”
I am building an Android application (using Scala 2.9) and am using a Thread that renders to a SurfaceView; this is for a game so it should update as often as it can. I imagine this issue is similar ...
2
votes
3answers
134 views
Testing Outgoing Akka Actor Messages
Let's say I have an actor like this (Using Akka 2.1 with Scala 2.10):
class ClientActor extends Actor with ActorLogging {
val configurationManager = context.actorOf(Props[ConfigurationManager], ...
1
vote
3answers
254 views
Manually creating actor hierarchy in akka
My application needs to be able to create a tree structure of actors. The standard way to do this I imagine would be to put the instantiation code inside the actors so they can instantiate their ...
2
votes
2answers
86 views
Getting instance of class used to create an actor in Akka in test
How do I get instance of class I passed to Props when creating an actor with ActorSystem.actorOf? I need that for unit tests to get reference to some properties of the actor, so the actor is local in ...
2
votes
1answer
77 views
How to avoid dropping message due to lock timeout in akka actor?
Bellow is a row from following build log: https://travis-ci.org/plokhotnyuk/actors/jobs/4088637/#L630
[WARN] [01/11/2013 12:26:04.908] [Thread-47] [akka://system/user/$t] dropping message of ...
1
vote
2answers
163 views
Extending a partially implemented partial function in scala
I'm using the Akka actors library here. The actors library defines a partial function "receive" which an actor that extends "actor" must implement to deal with various messages. I am creating a trait ...
4
votes
2answers
176 views
What is the benefit of using Futures over parallel collections in scala?
Is there a good reason for the added complexity of Futures (vs parallel collections) when processing a list of items in parallel?
List(...).par.foreach(x=>longRunningAction(x))
vs
...
4
votes
1answer
515 views
Asynchronous http requests using Netty and Scala actors
Asynchronous http requests using Netty and Scala actors
Hey hope someone can give me a hand with this.
I am trying to use the Scala Actors and Netty.io libraries to get make asynchronous http ...
0
votes
1answer
100 views
Scala Actors: Returning a Future of a type other than Any.
I am working my way through a book on Scala Actors, and I am running into a bit of a syntactical hangup. In practice, I tend to assign my variables and function definitions as such:
val v: String = ...
0
votes
3answers
92 views
How to safely use reply and !? on a Scala Actor
Depending on a reply from a Scala Actor seems incredibly error-prone to me. Is this truly the idiomatic Scala way to have conversations between actors? Is there an alternative, or a safer use of reply ...
5
votes
1answer
399 views
Trying to make use of Akka future and play promises in my Play2 application
When reading up on the play2 documentation I found this:
Because of the way Play 2.0 works, action code must be as fast as
possible (i.e. non blocking). So what should we return as result if we
...
-1
votes
1answer
149 views
Identifying use cases [closed]
Process:
Security cameras will detect security issues.
They will be sending to Main Control system
Main control will send them to DB
If threat level is low, call internal security
If threat level ...
0
votes
1answer
117 views
Estimating possible # of actors in Scala
How can I estimate the number of actors that a Scala program can handle?
For context, I'm contemplating what is essentially a neural net that will be creating and forgetting cells at a high rate. ...
1
vote
2answers
177 views
akka split task into smaller and fold results
The question is about Akka actors library. A want to split one big task into smaller tasks and then fold the result of them into one 'big' result. This will give me faster computation profit. Smaller ...
3
votes
2answers
306 views
Akka Actors: Handling DB Failures Without Losing Data
Scenario
The DB for an application has gone down. This results in any actor responsible for committing important data to the DB failing to get a connection
Preferred Behaviour
The important data is ...
2
votes
2answers
187 views
Quicksort using Future ends up in a deadlock
I have written a quicksort (method quicksortF()) that uses a Scala's Future to let the recursive sorting of the partitions be done concurrently. I also have implemented a regular quicksort (method ...
10
votes
2answers
946 views
How is Node.js evented system different than the actor pattern of Akka?
I've worked with Node.js for a little while and consider myself pretty good with Java. But I just discovered Akka and was immediately interested in its actor pattern (from what I understand).
Now, ...
1
vote
0answers
124 views
Simple remote actor/server: Local client wont stop
Started using scala and really like the language, but I seem to have a hard time understanding how actors work. I previously did a lot of my remote stuff using NIO, but now I want to try scala's ...
0
votes
1answer
70 views
Scala receive (actors) not receiving anything?
So I'm brand new to Scala, and I've been trying to play around with actors, but I'm running into a problem. When I try to send something back to the caller, it doesn't seem to go through at all, even ...
4
votes
2answers
788 views
libgdx difference between sprite and actor
I'm just going through the javadoc and various tutorials on libgdx and I'm at the stage of trying to figure out differences between various concepts that seem similar to me or provide similar ...
2
votes
1answer
185 views
Scala dispatcher-worker actor pattern
I am trying to design a dispatcher-worker actor pattern for Scala using the standard scala.actors package.
The dispatcher receives work from a java.util.concurrent.LinkedBlockingQueue and sends it ...
4
votes
4answers
236 views
How to handle multiple Promises in an (akka) Actor?
I have an Akka actor responsible of handling http calls. I use scala dispatch to send multiple HTTP requests over an API:
urls.foreach { u
val service = url(u)
val promise = Http(service OK ...
4
votes
1answer
124 views
What is the best practice way to initialize an actor from the database
I have a top level actor (under the guardian), called Groups which on startup needs to load the list of groups from the database and create a bunch of child actors based on those groups in the ...
0
votes
3answers
99 views
Get reference to supervised nested actor
I have a setup in which an actor(A) creates an actor(B) which it supervises and restarts when it crashes. From outside the actor system I want to get some value from the 'nested' actor B.
I can ...
1
vote
2answers
69 views
How to best implement a blocking/waiting actor?
I'm fairly new to Akka and writing concurrent applications and I'm wondering what's a good way to implement an actor that would wait for a redis list and once an item becomes available it will process ...
5
votes
2answers
215 views
Akka Actor ask and Type Safety
How can I use Akka Actor ask and maintain type safety? or avoid using ask in favour of tells?
When calling ? or ask on an Akka Actor, a Future[Any] is returned and I have to do an explicit cast via ...

