summaryrefslogtreecommitdiffstats
path: root/async/src/async_impl.h
Commit message (Collapse)AuthorAge
* KAsync has moved to it's own kasync.git repositoryDan Vrátil2015-05-18
|
* Async: rename Async namespace to KAsyncDan Vrátil2015-05-15
|
* Fixed void async each.Christian Mollekopf2015-04-19
|
* Async: allow appending existing Job objects to the Job chainDan Vrátil2015-02-20
| | | | | | | | | | | | Now it's possible to do something like Job<int, int> job = createSomeJob(); auto main = Async::start<int>(....).then(job); Previously the 'job' would have to be wrapped in a ThenTask-like lambda (which is what we still do internally), but with this new syntax it's possible to append another job chain to existing chain easilly. This syntax is available for all task types.
* Async: Move Async::PrevOut to Async::detail::prevOutDan Vrátil2015-02-09
|
* Async: relicense from GPLv2 to LGPLv2+Dan Vrátil2014-12-18
|
* Async: change syntax of callablesDan Vrátil2014-12-11
| | | | | | We now pass our own Async::Future to each task, instead of expecting tasks to return their future. This allows us to re-use the same Future for repeated invocations, like in the Each task.
* Prototype of Async libraryDan Vrátil2014-12-11