Akka is a framework that provides Actor model concurrency to Java and an alternative Actor model implementation to Scala.

learn more… | top users | synonyms

0
votes
2answers
124 views

Autonomous AKKA actor calling receive actively

I want to implement advanced communication patterns with akka 2.1. However, akka seems to differ from Scala's actors in a key aspect. Where scala's actors allow me to actively call "receive" and ...
1
vote
1answer
153 views

Wait for akka actor system to become available

I am using AKKA 2.1 with Scala 2.10. I need multiple machines to start actor systems and instantiate some number of actors. After this, each system needs to access all other systems and collect ...
0
votes
1answer
36 views

Programmatically obtain ephemeral port with Akka

If I configure an ActorSystem in Akka to use an emphemeral tcp port (more specifically, I configure the http port to 0), is there a way to programmatically obtain this port once the ActorSystem is ...
0
votes
2answers
85 views

Calculating Seconds Until a Given Date and Time in Joda Time

I am trying to use the Joda Time library to help me schedule sending some messages to an Actor in Akka. I would like to schedule sending emails every day at 8:30 AM. To do this, I have to tell the ...
0
votes
1answer
53 views

Akka : message processing against thread utilization

When message comes in mailbox, scheduler picks an actor, resume it and put it on OS thread. Java threads maps with OS thread to do execution. Actor will use one thread from pool and use this thread ...
0
votes
1answer
135 views

Queue asynchronous task in Play! - correct way

I have a little Play! application(2.1, scala) which acts as a RESTful front-end for a Java library. This web app queues tasks for background processing using: ...
0
votes
1answer
153 views

What are the suitable problems for Akka vs Gridgain? When is one more suitable than the other? [closed]

I am trying to understand the differences between Akka and Gridgain. Please explain when one is more suitable than the other and for what problems? http://akka.io/ http://www.gridgain.com/
2
votes
1answer
84 views

Can an Akka actor participate in an XA transaction?

Can an Akka actor participate in an XA transaction? For example, can an actor send a message to a remote actor within the same XA transaction as a database operation (assuming the JDBC driver is an ...
0
votes
1answer
101 views

Akka Camel - JMS messages lost - should wait for initialization of Camel?

My experimental application is quite simple, trying what can be done with Actors and Akka. After JVM start, it creates actor system with couple of plain actors, JMS consumer (akka.camel.Consumer) ...
1
vote
2answers
800 views

Akka 2.1 minimal remote actor example

EDIT Notice, I needed to make the reverse changes of this https://github.com/akka/akka/commit/ce014ece3568938b2036c4ccfd21b92faba69607#L13L6 to make the accepted answer work with AKKA 2.1 which is the ...
4
votes
2answers
152 views

Akka mapTo versus asInstanceOf

I'm reading the Akka Futures Guide and I see this sentence: Also note that the Future returned by an Actor is a Future[Any] since an Actor is dynamic. That is why the asInstanceOf is used in the ...
0
votes
1answer
350 views

Webservice call in Play2 Scala

I want to do something apparently simple: calling a webservice and saving the result in the database. I'm inside an Akka Actor code and what I do is to call an object method: object Service { def ...
1
vote
2answers
114 views

akka - Java stateful actor persistence

I am developing an application using AKKA (Java API). I have a few questions: In an actor class, is it okay to have a few data structures (Example: HashMap) as part of the actor state (attributes of ...
0
votes
1answer
41 views

akka actor failure affect on the os process

If say the code that my actor uses (a code I have no control over) throws an unhandled exception, could that result into the whole actor system process to crash or each actor is running in some kind ...
0
votes
3answers
166 views

Akka + Camel + FTP2 + localWorkingDirectory doesn't work reliably

I'm having an issue with the FTP2 component of Camel, with consumer actors living inside an Akka system. The basic idea is to monitor an FTP directory for files, then spawn a child actor to deal with ...
1
vote
1answer
179 views

Akka and Typesafe config versions issue

I tried to use akka 2.1.0 on a Tomcat server. But I got an error asking me to put the config library on the classpath too. Well that's not the issue. I put the config library of Typesafe, version ...
2
votes
2answers
130 views

Sending a message to all actors within an ActorSystem

Is it possible to send a message to all actors in an actor system? I've been looking at the Broadcast router example, but that is so marginal I can't comprehend how I add actors to the router ...
1
vote
2answers
325 views

How to handle Java futures with Akka actors

I have a layered architecture in a Java web application. The UI layer is just Java, services are typed Akka actors and external service calls (WS, DB etc.) are wrapped in Hystrix commands. THe UI ...
1
vote
1answer
310 views

How to deploy a Scala/akka application on Tomcat?

I try to deploy a simple application in Scala using akka on Tomcat 7. In the first version, the actor system and the main actor were started directly from a Scala object. In the second version, I ...
5
votes
1answer
698 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
96 views

Is it possible to implement Webservices from Akka

I'm quiet new to Akka. Right now in the initial stages... The reason why I insist on Akka is because I would like to leverage its distributed capabilities in my project The main implication will be ...
1
vote
1answer
69 views

How to get instance of already created TypedActor in java

I use the code like this: User actor is first created somewhere in the code like this: TypedActor.get(actorSystem).typedActorOf(new TypedProps<UserActor>(IUserActor.class, new ...
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
1answer
308 views

Background jobs with Play Framework on Heroku

On Heroku, and using the Play Framework, is it necessary to set up a background job processor (using Akka/RabbitMQ/etc.) in order to perform heavy tasks*? I know that Play offers the ability to ...
0
votes
0answers
53 views

what is the default spring xml file and its location when i create akka camel context?

i want to configure a spring xml, camel-context.xml (to use spring transaction, activeMQ component,etc) for akka camel context. however, akka camel context does not load my spring xml even if i put ...
3
votes
1answer
435 views

Scala Akka Play, Future doesn't return

I'm using Scala 2.10, Akka 2.1 and Play 2.1. When I send an http request to my backend, I ask one actor to compute something. The idea is to return the result of the calculation if it returns before a ...
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
182 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 ...
0
votes
1answer
114 views

Actor (Akka) not receiving messages after DB connection

I have a very simple database writer actor just for writing some entries to Mongo with Casbah, but it refuses (no errors) to receive any messages after the connection to DB. If i'm remove client and ...
2
votes
0answers
125 views

Play 2.0 multiple Akka futures to modify same database record

I am using Play 2.0.4 Java. There are two apis, one is to remove member detail from a channel object and the other is to add. Both APIs are using Akka.future(). How can I avoid the ebean exception ...
3
votes
1answer
295 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
60 views

does Akka manage Camel consumer thread or Camel context manage consumer thread?

the camel document mentioned that CamelContext manages threads for its consumers. Akka integrated Camel thru Camel extension. we know that Akka has its own thread pools (dispatcher). so the question ...
0
votes
1answer
44 views

What is the version of Apache Camel used in Akka 2.1?

I am looking at using Akka camel in a mission critical app. what is the version of Apache Camel used in current Akka 2.1? How can I used the latest Apache Camel in Akka?
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
1answer
326 views

How to schedule task daily + onStart() in Play 2.0.4?

I need to execute a piece of code 1 time everyday in playframework2.0.4 when I try to do with the class extends GlobalSettings it works. But it works for every instance requesting. I want it works ...
-1
votes
1answer
112 views

use become() from Java

I'm using Akka from Java. According to documentation, context.become() takes Procedure<Object> as a parameter. In fact, it expects PartialFunction<Object, BoxedUnit> which appears to be ...
0
votes
1answer
58 views

does akka camel consumer dequeue message before processing the message or after processing message?

class MyConsumer1 extends Consumer { def endpointUri = "some protocol string" def receive = { case msg: CamelMessage ⇒ // processing msg } } MyConsumer1 is a general form of camel ...
0
votes
1answer
61 views

what does autoAck in akka camel consumer mean?

autoAck in akka camel consumer returns boolean true or false. if autoAck = true, how does the consumer do when the message enters the consumer's mailbox but before the consumer processes the message? ...
1
vote
1answer
122 views

Sending C++ Protocol Buffer Messages from iOS

In a previous Stack Overflow question, people were super helpful in showing me the error of my ways while building my Akka socket server and I actually now have an Akka socket client that can send ...
1
vote
1answer
130 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 ...
3
votes
1answer
348 views

Protocol Buffer Messages via Akka IO and Sockets

I came across this blog post, which I found awesome and enlightening, showing how to do fixed-length framing of string messages sent to an Akka IO socket server. I have been working with an open ...
1
vote
1answer
65 views

Test Actors in Play Framework but Database is shutdown

I am using Play 2.0.4 and I'm doing a test unit for actors who make use of the database. The test begins well, but then at a given moment the connection with the database is closed and the actor who ...
2
votes
2answers
366 views

Scala: Redis client implementation with Akka futures

I'm looking for Redis client implementation for Scala. The client should be async and non-blocking, using Akka futures. What I found more or less useful: https://github.com/derekjw/fyrie-redis ...
1
vote
1answer
73 views

does akka queue support unit of order, which is available in weblogic jms queue

we are investigating porting an application from weblogic to use akka. the application utilize the unit of order feature offered by weblogic jms queue to make sure messages for the same order ...
2
votes
1answer
72 views

how many times does Akka persist a message when using reliable proxy pattern to do guaranteed message delievery?

the Akka 2.1 document suggests using the reliable proxy pattern (http://doc.akka.io/docs/akka/snapshot/contrib/reliable-proxy.html) to do guaranteed message delievery, i.e a message is delivery once ...
6
votes
1answer
79 views

Can a supervision strategy handle a ConnectException?

If a remote actor is not available due to power loss Can the supervision strategy handle the situation? I have coded the example and I have shut down the remote actor system but it seems that the ...
2
votes
1answer
115 views

Akka durable mailbox lose messages before the message has been processed?

the Akka durable mailbox document statements that: A durable mailbox is like any other mailbox not likely to be transactional. It's possible if the actor crashes after receiving a message, but ...

1 2 3 4 5 17