template<typename T>
class OnixS::B3::BOE::Threading::SharedFuture< T >
The class template Future provides a mechanism to access the result of asynchronous operations :
- An asynchronous operation (e.g. created via Promise) can provide a Future object to the creator of that asynchronous operation (e.g. via Promise::get_future).
- The creator of the asynchronous operation can then use a variety of methods to query, wait for, or extract a value from Future. These methods may block if the asynchronous operation has not yet provided a value.
- When the asynchronous operation is ready to send a result to the creator, it can do so by modifying shared state (e.g. via Promise::set_value) that is linked to the creator's Future.
Future is the synchronization object constructed around the receiving end of the Promise channel. It allows for the separation of the initiation of an operation and the act of waiting for its result.
Future is copiable and multiple SharedFuture objects may refer to the same shared state.
Unlike std::future, this implementation has an extended API, allowing you to query the state of SharedFuture. The internal implementation is lock-free; therefore, setting and polling states do not lead to blocking of threads and/or switching of an execution context.
- Note
- Access to the same shared state from multiple threads is safe if each thread does it through its own copy of a SharedFuture object.
- See also
- http://en.cppreference.com/w/cpp/thread/shared_future .
Definition at line 189 of file Future.h.