Simon Brunel eebcb4f364 Migrate documentation to VuePress
GitBook development seems a bit stuck right now so let's switch to VuePress which, IMO, is more user friendly. Update the documentation to include the version number in which features were added and use custom container to display notes and warnings.
2018-09-09 10:55:07 +02:00

499 B

title
.delay

QPromise::delay

Since: 0.2.0

QPromise<T>::delay(int msec) -> QPromise<T>

This method returns a promise that will be fulfilled with the same value as the input promise and after at least msec milliseconds. If the input promise is rejected, the output promise is immediately rejected with the same reason.

QPromise<int> input = {...}
auto output = input.delay(2000).then([](int res) {
    // called 2 seconds after `input` is fulfilled
});