18 #ifndef LUNCHBOX_READYFUTURE_H
19 #define LUNCHBOX_READYFUTURE_H
21 #include <lunchbox/future.h>
30 bool wait(
const uint32_t ) final {
return value; }
31 bool isReady() const final {
return true; }
43 #endif //LUNCHBOX_READYFUTURE_H
bool isReady() const final
Future< bool > makeFalseFuture()
Future< bool > makeTrueFuture()
Base class to implement the wait method fulfilling the future.
A future represents a asynchronous operation.
A boolean future with a known value.
bool wait(const uint32_t) final
Wait for the promise to be fullfilled.