Tagged Questions
0
votes
1answer
43 views
Conditional exception raising in a flow block
While using Akka's data-flow DSL, I have twice encountered a need to throw an exception inside future, conditionally. This is how I am doing it:
flow {
// ...
if (someCond)
shiftUnit(throw ...
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 ...
0
votes
1answer
51 views
akka.dispatch.Future not found
I am trying to import akka.dispatch.Future in my class but the compiler is unable to find that particular package. The one that it's able to find is akka.dispatch.Futures.
Can somebody point out what ...
0
votes
1answer
36 views
Returning a Future from an akka Mapper
My problem is best described by the following (simplified) example:
Given an asynchronous HTTP client which returns Future< JSON > on calls to its get-Method.
Given a link to a resource which ...
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 ...
2
votes
1answer
188 views
Akka Futures Exceptions
What happens when an actor of a future throws an exception?
According to the Akka documentation at http://doc.akka.io/docs/akka/snapshot/scala/futures.html:
It doesn't matter if an Actor or the ...
4
votes
3answers
219 views
Cancellation with Future and Promise in Scala
This is a followup to my previous question.
Suppose I have a task, which executes an interruptible blocking call. I would like to run it as a Future and cancel it with failure method of Promise.
I ...
4
votes
1answer
206 views
Scala Future mapTo fails to compile because of missing ClassTag
Simple question, I have a problem where using mapTo on the result of ask results in a compiler error along the lines of:
not found: value ClassTag
For example:
(job ? "Run").mapTo[Result]
...
3
votes
1answer
137 views
akka firstCompletedOf, identify message sender
I'm using Scala 2.10 / Akka 2.1 / Play 2.1, and I have a question about firstCompletedOf. How do I identify the sender of the result in the firstCompletedOf body? Look at the following code:
val ...
4
votes
2answers
186 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 ...
2
votes
2answers
398 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 ...
3
votes
1answer
504 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 ...
2
votes
2answers
519 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
2answers
571 views
direct use of Futures in Akka
I am not able to create a Future as explained here. It says you can create a Future directly using the following code:
import akka.dispatch.Await
import akka.dispatch.Future
import ...
0
votes
2answers
294 views
converting Akka's Future[A] to Future[Either[Exception,A]]
Is there a method in Akka (or in the standard library in Scala 2.10) to convert a Future[A] which might fail into a Future[Either[Exception,A]]? I know that you can write
f.map(Right(_)).recover {
...
5
votes
2answers
233 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 ...
1
vote
2answers
1k views
Access to ExecutionContext
I have this trait
trait NonBlockingGoodness extends DataStore {
import akka.dispatch.{ Future, ExecutionContext }
import akka.util.duration._
import akka.util.Timeout
implicit val ec = ...
2
votes
1answer
400 views
Play 2.0.2 with Akka remote system
I am working with Akka 2 and Play 2.0.2.
I want to connect the Play Framewrok to a remote Akka system.
I have done the remote configuration and
the remote referencing of actors but any time
I try ...
0
votes
1answer
723 views
Akka future with Play Framework
I am trying to use Akka future with play framework to connect to a remote akka system
. After running the system the akka future gives me a warning that one argument is left.
the code are below :
...
3
votes
2answers
631 views
Akka avoiding wrapping future when responding to non-Actor code
I'm making a small caching actor with Akka 2 and to make the actor not block I perform all calculations inside futures. However a problem is that this actor also need to interact with with code that ...
0
votes
1answer
228 views
how to work with promise in play 2.0 framework
i am working play 2.0 application with java.In that i am using promise for the Asynchronous sending of email.For that i followed http://www.playframework.org/documentation/2.0/JavaAsync
I tried like ...
0
votes
2answers
335 views
Chaining Futures in Akka and Spray
I have the following issue:
I need to query a RESTful service that always returns a JSON response. I need to contact it a few times, always with some more information that I learned from the previous ...
0
votes
1answer
135 views
Scala: Intercept functions to provide implicit parameters with Akka Futures
Ok, so I have a series of calls to functions that return Akka Futures, and I'm chaining them by using flatMap and map like so:
doAsyncCall(..).flatMap { res1 =>
doAsyncCall2(..).flatMap { res2 ...
0
votes
1answer
196 views
akka getSender() lost in future
I have a problem in akka (java) with the reference of the sender which disappears after a while in a future. Here is the code:
class MyActor extends UntypedActor {
@Override
public void ...
1
vote
2answers
273 views
How can I make A future of future into one future object?
Env: Akka 2.1, scala version 2.10.M6, JDK 1.7,u5
Now is my problem:
I have:
future1 = Futures.future(new Callable<Future<object>>(){...});
future2 = ? extends Object;
...
4
votes
2answers
1k views
How do I wrap a java.util.concurrent.Future in an Akka Future?
In a Play Framework 2.0.1 (Scala) application, we are using a web service client library which returns java.util.concurrent.Future as responses.
Instead of blocking the Play app on the get() call, ...
2
votes
1answer
506 views
How to fail an akka promise?
Suppose I have a function like this (I use akka 2.0.2):
def foo(message: String): Future[SomeClass] =
for {
result <- actor ? message
} yield SomeClass(result)
The caller of a function ...
8
votes
3answers
565 views
How to combined Futures of different types into one new Future without using zip()
I want to create a Future of type Future[(Class1,Class2,Class3)] from below code. However the only way I have found to do this is by using zip(). I find the solution ugly and properly not optimal. Can ...
5
votes
2answers
971 views
Akka actors, Futures, and closures
I read in the Akka docs that it's dangerous to close over variables from an enclosing actor.
Warning
In this case you need to carefully avoid closing over the
containing actor’s reference, ...
0
votes
1answer
149 views
How to get Futures of actor invocation in a non-actor context
I'm integrating Akka in an existing software, mainly to make things asynchronous where they shouldn't be synchronous.
I've a service that is making some database calls, at the moment, everything is ...
0
votes
2answers
320 views
Scala, Using Responder to abstract a possible Asynchronous computation
I have been looking into scala and AKKA for managing an obviously parallelisable algorithm.
I have some knowledge of functional programming and mostly do Java, so my FP might not be the best yet.
The ...
2
votes
1answer
245 views
How to run Akka Future using given SecurityManager?
For an open-source multiplayer programming game written in Scala that loads players' bot code via a plug-in system from .jar files, I'd like to prevent the code of the bots from doing harm on the ...
6
votes
2answers
1k views
Play Framework 2.0 - Incorrect documentation on Future - Promise conversion
There seems to be something wrong with the documentation at http://www.playframework.org/documentation/2.0/ScalaAkka.
In there, it states that one should import play.libs.Akka._ to get the following ...
1
vote
1answer
460 views
Akka future.await does not return when there is a timeout
I am new to Akka, and am having trouble with the Future.await call in Akka 1.2. I have created some Futures with OnTimeout and OnException handlers, and then I am waiting for them to complete. The ...
5
votes
3answers
321 views
Parallel random number generation with Akka Futures
I'm writing a CPU intensive application built with Akka 2 Futures. I don't need Actors currently but I'm not reluctant to use them.
Several computations enclosed in futures must invoke a random ...
0
votes
1answer
721 views
akka combining multiple lists of futures without blocking
This question is probably relatively basic to one familiar with akka Futures, so please bear with me.
Assuming I have a hierarchy of akka actors per the following structure:
BigBoss ...
0
votes
1answer
925 views
Timeout for Futures in Akka
We have a server that processes portfolio and securities (inside it) in different actors. For portfolio with smaller number of securities (<20) this works fine. When i increase the number of ...
4
votes
1answer
309 views
fork and join using Akka
problem statement: I have a portfolio of securities that need to be processed in a parallel fashion. In Java i used a threadpool to process each security, and use a latch to countdown. Once complete I ...
1
vote
2answers
1k views
Using akka futures and actors for parallelizing a list
I want to send a list of messages to an actor, receive a reply immediately in a future and then wait for all futures to complete before returning to the calling method. From reading the akka docs, I ...
1
vote
1answer
355 views
Akka / futures — does Akka decide if it's “worth” using the current thread or the dispatcher?
I'm currently thinking about using Akka (Java API/libraries) to accomplish the task of creating several Futures and put them into a BlockingQueue. Now it might be that some tasks which are handled by ...
0
votes
2answers
136 views
What is the ideal way to handle two different types of futures where one future is dependent on the other future?
I'm looking at AKKA's Java Futures API, and I see a lot of ways to handle multiple futures of the same type, but I don't see anything that pops out at me for handling futures of different types. I'm ...