Tagged Questions
0
votes
1answer
43 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
0answers
51 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 ...
1
vote
1answer
40 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
3answers
84 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.
...
0
votes
1answer
31 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 ...
0
votes
1answer
384 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 ...
-1
votes
1answer
96 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 ...
1
vote
1answer
73 views
akka (java) sender() method behaves strangely
Any known cases where TypedActor.getContext().sender() does not behave as expected?
I know that in fire-and-forget mode, it defaults to deadLetters, however I am running into something different:
// ...
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 ...
5
votes
1answer
430 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
vote
3answers
211 views
Scala's actor, what is the java equivelent? tradeoffs?
I am reading about scala's actors, so say we have someting like:
object Worker extends Actor {
def act() {
while(true) {
receive {
case "exit" => {
...
2
votes
2answers
277 views
libgdx 0.9.7 actor hit doesn't receive actor system coordinates
In my stage I have several actors added. I have Input Processor set for actors as well as for the stage itself.
The problem is that, when I tap on the actor the hit method of the actor receives ...
4
votes
3answers
242 views
Akka Actors - Lock single resource request
I'm using several akka actors to monitor my system, each responsible for a different component.
Some of the actors operations should not be performed in parallel.
So I created an actor which holding ...
0
votes
1answer
58 views
Dictionary of dataflow programming terms
I am developing a dataflow library for java, and I would like to give names to classes as it is customary to computer science. For example, I have following dataflow construct:
it has 2 input ...
1
vote
1answer
188 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 ...
4
votes
3answers
622 views
Send a TCP / IP message AKKA actor
Is it possible to send a message over TCP / IP to an AKKA actor?
For example, write a client like:
mySocket = new Socket("theactor", 75);
os = new DataOutputStream(smtpSocket.getOutputStream());
...
3
votes
1answer
124 views
How to empty Actor dead letter queue
I have a use case where I'd like to empty my Akka actors' dead letter queues.
My local actor talks to a remote actor, sending it some data periodically.
I think these get queued up as when the remote ...
7
votes
1answer
383 views
Sending a PoisonPill to an Actor in Java
I am starting to learn Akka by migrating an existing Java SE app to it. I am using Akka 2.0.3.
At one point I need to send a PoisonPill through the message queue to stop the actors. My actor is ...
0
votes
0answers
310 views
AKKA: Supervisor and child monitoring quetsions
I have a round-robin router that creates 10 instances of "Account" actors.
In these actors, I have defined a SupervisorStrategy by putting this code inside my Account.java
private ...
6
votes
1answer
397 views
Scala actors inefficiency issue
Let me start out by saying that I'm new to Scala; however, I find the Actor based concurrency model interesting, and I tried to give it a shot for a relatively simple application. The issue that I'm ...
2
votes
2answers
738 views
Akka - How to know if an actor is idle
DISCLAIMER - I am a complete Akka noob just fooling around.
I have an unknown number of jobs to be executed by a known (of course) number of actors. The initial jobs number might increase after an ...
0
votes
0answers
100 views
Exception handling in Akka for UntypedActors when using getContext().become
According to the akka.japi.Procedure interface it's not possible to throw an exception, event though onReceive supports this.
What is the best way, that after changing behaviour with the become(...) ...
1
vote
1answer
128 views
Use previously injected bindings in Guice initialization
I need to solve strange task : I have class A, which is created by Guice:
bind(A.class)
but later I need to initialize Actor with the class A (which is Actor by it's nature):
actorSystem.actorOf(
...
2
votes
1answer
468 views
Akka: defining an actor in Scala with non-default constructor and creating it from Java code
An Akka Scala actor must extend akka.actor.Actor
An Akka Java actor must extend akka.actor.UntypedActor
Therefore, when defining a Scala actor with a non-default constructor and creating it from ...
7
votes
1answer
3k views
When to use actors in libgdx? What are cons and pros?
I'm writing simple solar system simulator.
This is my first libgdx project. I'm using a Stage and Actors for the main menu and is pretty handy especially touch events handling. But ... looking at the ...
0
votes
1answer
202 views
Akka become() and getSender() incompatible
I have a question related to Akka 2.0.1 in the Java API. I have the following situation:
Actor A:
Receives a request from the UI. It will then do the following.
Wait for message from UI
Send msg to ...
1
vote
1answer
88 views
Scala actors being passed as parameters to other actors
I was experimenting with actors in Scala. But I'm very curious about two things. (1) Is there a way to declare an actor as a parameter to itself (as in the following code) without the use of another ...
4
votes
3answers
265 views
what would be the parallel java “actor” code to replace standard synchronization with threads code
If i have this synchronized code which i want to replace with actors with no synchronization, how?
public synchronized int incrementAndGet() {
i = i + 1;
return i;
}
and i have a bunch of users ...
0
votes
1answer
99 views
Priority event-based Dispatcher with a TypedActor
Is it possible (or even advisable) to use a PriorityExecutorBasedEventDrivenDispatcher with a TypedActor, in either Akka 1.3 or 2.0? I'm hoping to set higher priorities for specific message types, ...
2
votes
1answer
383 views
Akka actor that still works while waiting for new messages?
I'm new to Akka, and I apologize in advance if this is a basic question. I'm not sure how to use actors to implement the following scenario, or if it's even possible (or desirable).
I have a number ...
13
votes
2answers
480 views
Using Actors instead of `synchronized`
Every time I read about using synchronized in Scala the author will usually mention that Actors should be used instead (this for example). While I understand roughly how actors work I'd really like to ...
5
votes
2answers
995 views
What is the difference between Typed and UnTyped Actors in Akka? When to use what?
I have tried to read the Akka documentation to find out the exact difference between Typed and Untyped actors. When to use what? I am not sure what I'm missing. Can somebody point me to something ...
1
vote
3answers
339 views
Java Executor partial shutdown
Lets have one classic Executor in application. Many parts of application use this executor for some computations, each computation can be cancelled, for this I can call shutdown() or shutdownNow() on ...
4
votes
3answers
482 views
moving from java threads to scala actors
i have a java application which has various Agents(Java Algo's) which listen to messages and process them . Each agent executes these messages on a single thread where these messages are added in a ...
10
votes
3answers
1k views
why use akka eventhandler for logging
In the following document, event handlers are described as taking the place of logging
http://akka.io/docs/akka/1.2/general/event-handler.html
There is an Event Handler which takes the place of a ...
1
vote
2answers
232 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
3answers
246 views
Strange NullPointerException in Actors in scala using play framework
I want to do some parallel computation and I'm getting a really strange java.lang.NullPointerException on calling ANY functions outside the object I have.
Take a look:
case class Return(session: ...
9
votes
3answers
2k views
Akka remote actor server discovery
I would like to deploy a remote actors software made with akka on a cluster. The system is composed of several worker nodes and a single master node. The problem is that I cannot know in advance the ...
6
votes
3answers
580 views
How do we test Actors in Java?
The only thing I've seen so far is someone posting an example of testing a TypedActor. I take it there's no way of testing an UntypedActor through say Junit? Akka docs are getting better by the day, ...
0
votes
2answers
460 views
How do I change actors.maxPoolSize in scala from java?
So I have two bash scripts. One for calling the bytecode using the "scala" command, the other to call the same code using the "java" command. My problem is the following, when I use scala, I can see ...
2
votes
1answer
627 views
How can I use a TypedActor in a Java application?
I try to implement a TypedActor in Java following the examples on Typed Actors (Java). But I'm struggling. I have added akka-actor-1.1-M1.jar, akka-typed-actor-1.1-M1.jar, scala-library.jar but it ...
14
votes
2answers
4k views
When to use Akka (Scala Actors) instead of “older” messaging solutions such as WebSphere MQ or Tibco Rendevous?
I already read the discussion about Scala Actors vs. JMS: Scala Actors vs JMS
I will play with Akka in the next few weeks to get a better understanding about its power and good use cases. It looks ...
7
votes
6answers
461 views
How to implement several 'threads' running in only one thread
Lately I've been thinking: How do they implement several 'threads' in only one thread?
I mean, how they implement several parallel running pieces of code in only one thread? How they save the state ...
2
votes
4answers
5k views
How can I use Akka Actors in a Java application?
I would like to use Akka actors in Java.
I downloaded the akka-1.0.zip and added akka-actor-1.0.jar to my "Build Path" in Eclipse.
Then I wrote this Actor class:
package com.example;
import ...
6
votes
1answer
958 views
In AKKA does calling shutdown on a supervisor stop all the actors it's supervising?
Let's say I have a supervisor that has linked 2 actors. When my app shutsdown I want to shutdown those actors gracefully. Does calling supervisor.shutdown() stop all the actors or do I still need to ...
29
votes
1answer
5k views
Scala Actors vs JMS
What are the differences using Scala Actors instead of JMS?
For example from a performance and scalability perspective, what does the Scala Actor model add compared to JMS? In which cases does it ...
1
vote
3answers
334 views
How to disribute and maintain java/scala program over a Linux cluster?
I have a small cluster of Linux machines and an account on all of them.
I have ssh access to all of them with no-password login.
How can I use actors or other Scala's concurrency abstraction to ...
0
votes
2answers
806 views
Zero-copy message-passing on the JVM
A faithful implementation of the actor message-passing semantics would mean that message contents are deep-copied from a logical point-of-view, even for immutable types. Deep-copying of message ...
27
votes
5answers
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 ...
8
votes
4answers
1k 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 ...

