Provides a common base for an asynchronously returned object.
More...
|
void | set_owned (void) noexcept |
|
bool | is_owned (void) const noexcept |
|
virtual T | get (void)=0 |
|
virtual bool | valid (void) const =0 |
|
virtual void | wait (void) const =0 |
|
template<typename Function > |
void | async_then (Function &&f) |
|
|
virtual bool | valid_no_yield (void) const noexcept=0 |
| Returns true if the result has been received.
|
|
void | schedule_continuation (void) |
| Schedules a continuation if async_then() was called.
|
|
template<typename T>
class stapl::runtime::future_base< T >
Provides a common base for an asynchronously returned object.
- Template Parameters
-
Continuations created through async_then() execute in a new context in the next nesting level than the context they are created in. When reused, the context of the continuation remains the same between invocations.
- See also
- future
The documentation for this class was generated from the following file: