Programming model distinguished by ubiquitous asynchronous communication.
0
votes
0answers
39 views
Create an Akka actor remotely without a new ActorSystem
I've been over the documentation several times now (http://doc.akka.io/docs/akka/2.1.4/scala/remoting.html) and through the example here ...
0
votes
2answers
22 views
Anything recent in Concurrency in the JS ecosystem ? Last was 4 months ago
**
Is there anything like Actors in JavaScript and its ecosystem (Node, CoffeeScript, Backbone etc) ?
With the widespread use of AJAX it seems perfect for asynch message-passing.
85
votes
4answers
12k 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 like a very nice ...
29
votes
6answers
11k views
Which Actor model library/framework for Java?
There are so many different Actor model implementations for Java (and the JVM languages).
A lot of Actor libraries and frameworks have been implemented to permit Actor-style programming in Java ...
33
votes
9answers
7k views
Any good implementation of Actors for C#?
Is there any good implementation of actors concurrency model for .net/c#?
I have to optimize a c# routine and i think that actors model fits perfectly as a solution for my problem. Unfortunately i ...
0
votes
2answers
85 views
How to implement a self-cancelling poller without using a var?
I'm curious if it's possible to safely implement a self-cancelling poller without using a var to keep the instance of akka.actor.Cancellable
So far, I came up with something like what you see in the ...
2
votes
1answer
74 views
What is the best way of avoiding type erasure in Scala/Akka when sending and receiving messages?
I have a system of Actors in Scala/Akka that send and receive messages other than simple primitives. If I have a receive case of something like:
(name: String, details: Map[String, List[Int])
The ...
11
votes
5answers
1k views
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 ...
1
vote
2answers
98 views
How can I get Fibonacci(n) in an efficient way with Scala Actor?
The algorithm is just like this.
def fib(x: Int): BigInt = {
x match {
case 1 => BigInt(1)
case 2 => BigInt(1)
case x => fib(x-1) + fib(x-2)
...
0
votes
3answers
57 views
How to deal with long initialization of an Akka child actor?
I have an actor which creates a child actor to perform some lengthy computations.
The problem is that the initialization of the child actor takes a few seconds and all messages that the parent actor ...
2
votes
1answer
38 views
libcppa actor that spawns actors on socket connections
I'm looking for example code for a libcppa actor that listens on a port for new connection and then spawn new actors to handle the new connection.
Any help would be appreciated.
Thanks
3
votes
2answers
73 views
Akka - Common service actor: Identify or Extension
Lets say I have some commonly used by other actors service-layer actor. For example, an registry service that stores and retrieves domain objects:
case class DomainObject(id: UUID)
class Registry ...
0
votes
1answer
61 views
Exception thrown while iterating in scala
I have an actor based system in which I am reading an external file sitting in an S3 bucket and moving taking each of the file lines and sending it over to another actor that processes that particular ...
33
votes
2answers
4k views
Scala actors - worst practices?
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 use them.
I think I am ...
0
votes
0answers
32 views
Akka: running Slf4jEventHandler on a dedicated thread
I use Slf4jEventHandler for logging in an Akka 2.0.5 app:
akka {
event-handlers = ["akka.event.slf4j.Slf4jEventHandler"]
loglevel = "DEBUG"
actor {
provider = ...
0
votes
1answer
41 views
How do I create a TestActorRef in Scala for an Actor with constructor params?
The Akka Testing docs give the following way to create a TestActorRef:
import akka.testkit.TestActorRef
val actorRef = TestActorRef[MyActor]
How do I extend this for testing an existing actor ...
1
vote
1answer
51 views
Having on trying to learn how to make a simple scala actor
I'm trying to grasp scala actors (I'm reading "Scala for the Impatient") and the following short example is not working like I intended.
I have case classes of messages I want to send to the actor:
...
1
vote
1answer
56 views
Merge sort in Scala using Actors
So this is the code :
object Main {
def main(args: Array[String]){
var myArray = Array(5,2,7,6,8,1,15,5/*,9,10,56*/)
var startSorting = new Starter(myArray)
startSorting.start
startSorting ! ...
3
votes
3answers
188 views
Akka actors unit testing with Scala
I'm fairly new to Scala so please be gentle.
In the app I'm currently building, I'm using Akka actors and I want to write some unit tests. I came across this official documentation for writing unit ...
0
votes
1answer
91 views
How to test Akka Actor functionality by mocking one or more methods in it
I'm interested to know about how to test Akka Actor functionality, by mocking some methods (substitute real object's/actor's method implementation by mocked one) in Actor.
I use ...
1
vote
3answers
97 views
Interact with Akka actor outside actors
I want to interact with Akka actors from my own thread. Currently, i do like so:
val res = Await.result(aref ? GroupReceive(fromRank), timeout.duration).asInstanceOf[T]
But I am unsure how this ...
1
vote
1answer
134 views
How to use futures with Akka for asynchronous results
I am trying to write to multiple files concurrently using the Akka framework, First I created a class called MyWriter that writes to a file, then using futures I call the object twice hopping that 2 ...
2
votes
2answers
554 views
Scala actor to non-actor interaction (or synchronizing messages from an actor to a servlet)
I have the following scala code:
package dummy
import javax.servlet.http.{HttpServlet,
HttpServletRequest => HSReq, HttpServletResponse => HSResp}
import scala.actors.Actor
class ...
1
vote
3answers
51 views
Does the child actor know that he is being resumed?
Imagine a straight-forward supervision hierarchy. The child dies. The father decides to Restart the child. When Restarted, the postRestart and friends are called, but what if the father had decided to ...
2
votes
6answers
698 views
Parallel file processing in Scala
Suppose I need to process files in a given folder in parallel. In Java I would create a FolderReader thread to read file names from the folder and a pool of FileProcessor threads. FolderReader reads ...
1
vote
0answers
73 views
Java actor library and Akka [closed]
There is article about using actors for java ( μJavaActors library ).
My goal: to determine what to use/learn in general (not for particular task) - for Java (sometimes I use scala, though)
There is ...
0
votes
2answers
60 views
Modeling synchronization using actors
I'm trying to understand how to solve the dining philosophers problem using actors. In case you don't know, the crux of the problem is that a thread needs to obtain two locks before it can ...
1
vote
2answers
86 views
Can it be safe to share a var?
My application has a class ApplicationUsers that has no mutable members. Upon creation of instances, it reads the entire user database (relatively small) into an immutable collection. It has a number ...
0
votes
2answers
86 views
scala+jdbc+case class+actors design confusion
I am writing an exporter that will take results from the database and take every individual records and write it to a comma separated file. Different queries will have different worker created for it ...
1
vote
1answer
140 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
...
3
votes
1answer
185 views
Creating Self-Documenting Actors in Scala
I'm looking at implementing a JSON-RPC based web service in Scala using finagle. I'm trying to work out how best to structure the RPC invocation code (ie. taking the deserialized request and invoking ...
1
vote
1answer
72 views
LibGDX - Does modifying a Group affects children?
I wonder if there is a way to affect Actors children when their parent Group is modified ? Like they were attached to him. By modifying I mean doing some conventional actions like translation, ...
0
votes
1answer
62 views
touch isn't detecting on libgdx button
I'm new to libgdx and learning libgdx scene2d.
In menu screen constructor I had created a stage with the device's resolution
and added stage to input processor:
stage = new Stage(800, 480, false);
...
1
vote
2answers
972 views
Concurrency within Java EE environment
Goal
My goal to better understand how concurrency within Java EE environment and how can I better consume it.
General questions
Let's take typical servlet container (tomcat) as example. For each ...
4
votes
1answer
870 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 ...
0
votes
3answers
135 views
Get existing or create new akka actor
I'm trying to get an existing ActorRef with ActorFor or create a new one if it does not exists. I have the following code but it doesn't seem to work as expected. .isTerminated() is always true.
...
2
votes
1answer
66 views
Does akka support higher-order actors?
I would like to pass a serialized Actor together with its state to another Actor (so it can be migrated across the network). Is there any API for that or should one be implemented from scratch?
0
votes
1answer
33 views
How to limit rate of Actor executions within Actor-model?
There is a whole bucket of Actor model frameworks that focus on maximizing throughput of programmatically-defined.. erm.. actions (or should I say acts).
What implementations allow me to put a limit ...
2
votes
2answers
113 views
How to guarantee response time of Actor?
This is a follow-up to my previous question:
Suppose I have an actor, which handles X requests per second. However sometimes there are bursts and clients send Y > X requests per seconds. Now I ...
0
votes
1answer
38 views
actor:possible to send and receive nested in a recieve
When process a message, is it possible to send out an message to another actor and wait for that actor to reply, and consume the replied message and then continue, like the following, is it doable?
...
2
votes
1answer
104 views
How to handle bursts with Actors?
Suppose I have an actor, which handles X requests per second. It is ok in average but sometimes there are bursts and clients send Y > X requests per second. Suppose also that all requests have ...
1
vote
1answer
64 views
How does akka know which specific message reply is associated with the correct future?
Lets say I ask (?) the same actor for two responses.
It stores the sender for later.
Later, it gets messages back to go to the senders. We get the right sender (the one hashed to the message) but how ...
1
vote
1answer
215 views
Akka: dynamically add Actors to BroadcastRouter
What is the correct way to have a Broadcast actor dynamically add/remove routees over time?
Context of the problem:
An actor listens to price changes of a particular item, then it broadcasts to all ...
0
votes
1answer
656 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 ...
0
votes
1answer
105 views
Is it OK to use `scala.actors.Actor` object in an Android application?
I know that it works, just checked. I'm wondering about the system not being able to free memory or the application "hanging" in the background or such things.
import scala.actors.Actor
import ...
2
votes
2answers
124 views
Concurrent tasks with Actors and Futures in Scala
Suppose I need to run a few concurrent tasks. I can wrap each task in Future and wait for their completion. Alternatively I can create an Actor for each task. Each Actor executes its task (upon ...
0
votes
1answer
544 views
Akka actor tutorial in Scala to multithreading in Java
I tried to convert the Getting-started Akka tutorial from Scala to Java and replace actors with threads.
The tutorial can be found here ...
0
votes
0answers
55 views
Scala remote actors won't communicate, why?
I'm trying to connect two remote actors on localhost (firewall disabled), but no message is coming through. I created some simple code that conveys my problem:
actor 1:
package test
import ...
0
votes
2answers
130 views
awaitAll does not work in my test
When I create an ad-hoc future and call it it works ok.
scala> val f = future {Thread.sleep(1000 * 60 * 1); println("Hi"); 20}
f: scala.actors.Future[Int] =
scala> f()
Hi
res39: Int = 20
When I ...
2
votes
2answers
55 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 ...

