Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | KAsync has moved to it's own kasync.git repository | Dan Vrátil | 2015-05-18 |
| | |||
* | Async: rename Async namespace to KAsync | Dan Vrátil | 2015-05-15 |
| | |||
* | Fixed void async each. | Christian Mollekopf | 2015-04-19 |
| | |||
* | Async: allow appending existing Job objects to the Job chain | Dan Vrátil | 2015-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::prevOut | Dan Vrátil | 2015-02-09 |
| | |||
* | Async: relicense from GPLv2 to LGPLv2+ | Dan Vrátil | 2014-12-18 |
| | |||
* | Async: change syntax of callables | Dan Vrátil | 2014-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 library | Dan Vrátil | 2014-12-11 |