summaryrefslogtreecommitdiffstats
path: root/async/src/async.cpp
Commit message (Collapse)AuthorAge
* Async: bring back synchronous Future::waitForFinished()Dan Vrátil2014-12-14
|
* Async: make the processing truly asynchronousDan Vrátil2014-12-14
| | | | | | Now calling exec() starts the first job and returns a pending Future immediately. Caller can then use Async::FutureWatcher to wait for the future to become finished, i.e. for all jobs to finish execution.
* Async: move some more code out-of-lineDan Vrátil2014-12-12
|
* Async: move some common code from executors to shared base classDan Vrátil2014-12-12
|
* Async: move the actual task exection into Executor implementationDan Vrátil2014-12-11
| | | | | | | As of now, Job is only front interface to a chain of Executor subclasses. Each Executor subclass specializes for given type of execution (then, each, reduce, ...), and the chain is then executed recursively, as we did with the original Job implementation.
* Async: move some definitions out-of-lineDan Vrátil2014-12-11
|
* Prototype of Async libraryDan Vrátil2014-12-11