Programming model distinguished by ubiquitous asynchronous communication.
0
votes
0answers
6 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.
0
votes
2answers
84 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
73 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 ...
1
vote
2answers
95 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
56 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
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 ...
3
votes
2answers
72 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
40 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 ! ...
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 = ...
3
votes
3answers
187 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 ...
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 ...
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
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 ...
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
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 ...
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
61 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);
...
0
votes
3answers
133 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?
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 ...
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 ...
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 ...
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
542 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 ...
1
vote
1answer
88 views
Design of server component in Scala
Suppose I need to a Scala component to process incoming requests concurrently and return the processing results. Suppose also that the request processing consists of a few steps. Some of the steps are ...
0
votes
1answer
124 views
Confusion over Akka Actors vs Java Objects
I'm trying to familiarize myself with Akka and Actors in general, but I think I'm missing a point. My receive loops are becoming overly large. For example:
class Node extends Actor {
def receive {
...
5
votes
1answer
167 views
How to interrupt task in Scala?
As I understand Scala Actors cannot be interrupted. Suppose now that I have a task with a timeout. If the task does not finish within the timeout I should stop it.
Suppose that the task is ...
4
votes
2answers
120 views
Where should Rx be used? [duplicate]
I'm thinking about bringing in Rx to my workplace but the more I learn about it the more I think it doesn't really give you an advantage.
We have a lot of server apps that take input data at one end ...
0
votes
0answers
14 views
What about reuse of active behavior (e.g. actors)? Is it useful? How is that issue tackled by practitioners?
In my Bachelor's Degree thesis ("Reuse Mechanisms and Concurrency: From Actors to Agent-Oriented Programming") I considered how reuse happens in concurrency.
Typically, reuse is done by extending ...
2
votes
2answers
123 views
Passing request context implicitly in an actor system
I would like to propagate a request context implicitly in a system of collaborating actors.
To simplify and present the situation, my system has multiple actors and the messages passed to these ...
0
votes
1answer
41 views
What is considered “best practice” to test semantic race conditions in akka?
Consider the following actor:
class Stateful(worker: ActorRef) extends Actor {
val queue = // immutable queue with details
def receive = {
case NewJob(details) => worker ! details
...
-1
votes
1answer
103 views
JVM high performance concurrency [closed]
Looking for a high performance framework that runs on the JVM and is able to scale-up massively.
I know that several Actor frameworks exist on the JVM and are able to scale-up and provide the ...
2
votes
1answer
71 views
Nested react (or receive) in Scala
I have an intermediate remote actor (B) that is supposed forward back and forth messages from A and C ( like A <-> B <-> C ). In B's code I have something like
loop {
react {
...
0
votes
2answers
54 views
Calling one specific overriden method in all derived classes
Consider the following code:
// ======== Abstract class ========
public abstract class Creatures {
public abstract void loseEnergy();
public void execute()
{
loseEnergy();
...
0
votes
3answers
141 views
Add routes/special messages to akka router
In my application I have to send subscription messages to actors, which may or may not be routers. If they are routers, the messages have to be send to all routees. Broadcast is not applicable here, ...
2
votes
1answer
143 views
Akka actors concurrency issue
Suppose I have three Actors communicate with each other: ActorControl, ActorA, ActorB.
ActorA and ActorB communicate with ActorControl. The messages they receive are mostly different but they also ...
1
vote
1answer
69 views
Actors responsible for persisting the data they will use?
I am creating a distributed system with many actors using akka/scala. Most of the "worker" actors will be performing essentially the same operation on a different subset of a large set of data. ...
0
votes
0answers
147 views
akka sending a closure to remote actor
Background
i want to send a closure to a remote actor. remote actor should run the closure on its data and send back the result. May be it is not advisable, but for curiosity's sake that's i want to ...
0
votes
2answers
190 views
Akka BindException when trying to connect to remote actor: Address already in use
I am experimenting with Akka remote actors, trying to establish a simple 2 player game over the network. This answer to an earlier question gave me a really good starting point but now I'm having a ...



