A placeholder for the result of a calculation before the calculation has completed. Used in concurrent programming. Questions about future events are off-topic on Stack Overflow.

learn more… | top users | synonyms

0
votes
1answer
36 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
0answers
15 views

UsbManager NoDefClass error on Galaxy S5570 with Android 2.3.5

I am having problem with deploying application to Galaxy-Mini S5570 with Android 2.3.5 I have ensured that everything is set right: AndroidManifest.xml has <uses-sdk ...
0
votes
0answers
11 views

E2E testing with scenario - resolving futures

Using the angular scenario library for E2E testing. This: describe("Santity Checks", function() { it("just see the path", function() { console.log(browser().window().path()); }); ...
0
votes
1answer
34 views

Failing a Future based on a successful result

I have a scenario in my code where I need to make a Future fail based on a successful result that contains a certain value. I can make this work just fine via flatMap, but I want to know if there is ...
0
votes
1answer
22 views

Java - RunnableFuture and SortProcessor

I'm studying some code an here is a method, I 'm not quite sure about what it does: 1) There is a RunnableFuture, why is it assigned a FutureTask, why not FutureTask = new Futuretask? 2) What is ...
1
vote
1answer
104 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
1answer
63 views

Changing map to pmap in my Clojure program leads to weird exception (ClassCastException)

As far as I know, pmap in Clojure works just like map, but it calculates results in parallel, using futures under the hood. So it should "just work" with a function and a sequence, if map works with ...
1
vote
4answers
89 views

Future with Timeout in Scala

Suppose I have a function, which invokes a blocking interruptible operation. I would like to run it asynchronously with timeout, i.e. I would like to interrupt the function when the timeout is ...
5
votes
1answer
35 views

Methods ready and result of Future in Scala cannot be called directly

I noticed that methods ready and result of scala.concurrent.Future cannot be invoked directly. When I call them in REPL I get an error. Thus I have to call Await.ready and Await.result instead. It ...
1
vote
2answers
43 views

Execution context without daemon threads for futures

I am having trouble with the JVM immediately exiting using various new applications I wrote which spawn processes through the Scala 2.10 Futures + Promises framework. It seems that at least with the ...
0
votes
0answers
11 views

How should one adapt the result of a python concurrent.Future while maintaining the Future interface?

Suppose I have functions that look like this: import concurrent.futures tp = concurrent.futures.ThreadPoolExecutor(5) def run(): #Suppose this is a function in a library that takes a long time ...
1
vote
4answers
106 views

Create Future with function without starting it

This is a follow-up to my previous question Suppose I want to create a future with my function but don't want to start it immediately (i.e. I do not want to call val f = Future { ... // my function}. ...
0
votes
3answers
95 views

How to add callbacks to Future in Scala?

I saw an example here: val fut = Future { ... // my body function } // my body function starts here fut onComplete { ... // my callback } Looks like I may add the callback after the completion of ...
1
vote
1answer
43 views

How to find find Future implementation in scala.concurrent?

I am trying to understand what exactly happens, when I call val f = scala.concurrent.Future {... // my body function } The code of object Future defines apply methods as follows: def ...
2
votes
0answers
64 views

Memory usage with future and containers in Qt / MinGW

Consider the following test code: #include <vector> #include <array> #include <future> #include <iostream> using std::vector; using std::array; using std::cout; using ...
1
vote
4answers
39 views

How to wait for all callables to finish executing before proceeding?

I have the following code hashed out: public class MyCallable implements Callable<Long> { @Override public Long call() throws Exception { // Do stuff... } } public class ...
0
votes
1answer
37 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
2answers
63 views

Scala - ScheduledFuture

I am trying to implement scheduled future in Scala. I would like it to wait specific time and then execute the body. So far I tried the following, simple approach val d = 5.seconds.fromNow val f = ...
1
vote
1answer
86 views

Scala - futures does not run

I am trying to run the following future basic code future { println("ssss")} onSuccess{ case _ => println("succ")} However, when I run the main method, nothing to the console is printed and the ...
6
votes
2answers
113 views

Scala - futures and concurrency

I am trying to understand Scala futures coming from Java background: I understand you can write: val f = Future { ... } then I have two questions: How is this future scheduled? ...
1
vote
1answer
32 views

Is there a packaged_task::set_exception equivalent?

My assumption is that packaged_task has a promise underneath. If my task throws an exception, how do I route that to the associated future? With just a promise I could call set_exception – how do I ...
3
votes
2answers
47 views

Spring @Async with Future

I am new to java.util.concurrent.Future and have some questions. If I call a service using Future how do I know what element was used to call the service? Here is an example: For each id I am using ...
1
vote
3answers
110 views

Python's `concurrent.futures`: Iterate on futures according to order of completion

I want something similar to executor.map, except when I iterate over the results, I want to iterate over them according to the order of completion, e.g. the work item that was completed first should ...
0
votes
1answer
33 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 ...
5
votes
5answers
200 views

Wait for several Futures

Suppose I have several futures and need to wait until either any of them fails or all of them succeed. For example: Let there are 3 futures: f1, f2, f3. If f1 succeeds and f2 fails I do not wait ...
0
votes
0answers
56 views

in VS2012, the std::future_error code() doesn't match its what()

Following Kerrek's guide in What is std::promise?. I try similar sample codes but it doesn't achieve what I expect. That is, the caught future_errc error's member function code() doesn't match its ...
0
votes
1answer
86 views

parallel quick sort outdone by single threaded quicksort

I've been reading the book C++ concurrency in action, here is the example in the book using futures to implement parallel quick sort. But I found this function is more than twice slower than the ...
2
votes
3answers
45 views

Does a Future timeout kill the Thread execution

When using an ExecutorService and Future objects (when submitting Runnable tasks), if I specify a timeout value to the future's get function, does the underlying thread get killed when a ...
0
votes
1answer
48 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
148 views

C++11 async + then

I've tried to compile this (with some small obvious fixes) c++11 async continuations or attempt at .then() semantics using clang (latest version) with libc++ and it won't compile: No matching ...
0
votes
0answers
70 views

Jasper Reports - Jasper Fill Manager End Query

I'm using Jasper Reports to generate reports in a web application. These reports use an SQL query for their data. Currently I'm using Jasper Fill Manager's fillReport method, which accepts a ...
7
votes
1answer
130 views

std::async decaying(losing) rvalue reference in Visual Studio 2012 Update 2. Any workarounds?

Consider the below code: #include <memory> #include <future> using namespace std; template <typename T, typename Work> void Test2(future<T> f, Work w) { ...
1
vote
2answers
203 views

Performance Issues with Multithreaded code when using CallableTask/Futures and ObjectMapper

I am working on a REST service based project in which I have two components as mentioned below- Client which will make the necessary URL's for the Service component Then Service(REST service) ...
2
votes
2answers
115 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 ...
2
votes
1answer
151 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 ...
3
votes
3answers
172 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 ...
1
vote
3answers
88 views

Can't get flatten of Try into a for comprehension

This is a combination of a stylistic question, and my attempts to broaden my Scala understanding. I've got a list containing Future's, I want to compute the values of the futures, transform into ...
0
votes
1answer
81 views

Time delay between futures in Play framework 2.1

I have a number of consuming works that are fully asynchronous and started roughly at the same time. I mean something like this: for (i <- 1 to n) { Future { startWork("work" + i) } } But I ...
12
votes
1answer
186 views

How to cancel Future in Scala?

Java Future has cancel method, which can interrupt the thread, which runs the Future task. For example, if I wrap an interruptible blocking call in a Java Future I can interrupt it later. Scala ...
1
vote
1answer
86 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 ...
2
votes
2answers
101 views

Futures for blocking calls in Scala

The Akka documentation says: you may be tempted to just wrap the blocking call inside a Future and work with that instead, but this strategy is too simple: you are quite likely to find bottlenecks ...
1
vote
2answers
99 views

Java Threading: Futures only using results from first and last thread

I have a simple utility which pings a set of nodes and returns an ArrayList of strings to a future object to be outputted to a file. The program should run until terminated by the user. It doesn't ...
5
votes
1answer
101 views

Wait for any of given Futures in Scala?

Suppose I need to execute a few parallel tasks in Scala. Each task performs some blocking call (e.g. Process.waitFor). Now I would like to wait until any of the tasks completes. As I understand I ...
1
vote
1answer
122 views

How do I wait for asynchronous tasks to complete in scala?

I'm aware that my problem might seem a little bit complex. But I'll try to express myself well. I have this method which I want to return a Map[String, List[String]] filled with data. def ...
4
votes
2answers
78 views

How can I flatten this Future[T] structure?

Given the following example: val handler : Connection = new DatabaseConnectionHandler() val result : Future[Future[Future[Option[ResultSet]]]] = handler.connect .map( (parameters) => ...
2
votes
1answer
58 views

javascript dom using futures

the dom standard now apparently includes futures from what I can tell from the doc, this seems to be a different flavor that what most people advertise as futures - in particular there seems to be no ...
0
votes
1answer
97 views

Scala check if Future[Seq[String]] isEmpty

I would like to check if a Future[Seq[String]] is Empty and I am using if(!Future.sequence(sortSeq).isEmpty){ //doSomething } but it throws me error ?
0
votes
1answer
73 views

Convert Future[Seq[(String, String)]] to Future[Seq[(String)]]

I am trying to convert Future[Seq[(String, String)]] to Future[Seq[(String)]] using the following: sortedSeq.map(_._2) so sortedSeq is of type Future[Seq[(String, String)]] but I keep getting the ...
17
votes
5answers
348 views

Is std::promise broken on my machine (using g++-mp)?

Is this code valid, or is my compiler broken? #include <future> #include <iostream> int main() { std::cout << "doing the test" << std::endl; std::promise<bool> ...
4
votes
1answer
111 views

Tolerant version of Future.traverse

The traverse method from Future object stops at first failure. I want a tolerant version of this method which on occurrence of errors carries on with the rest of the sequence. Currently we have ...

1 2 3 4 5 7