OnixS C++ B3 BOE Binary Order Entry 1.3.0
API Documentation
Loading...
Searching...
No Matches
SharedFuture< T > Class Template Reference

Public Member Functions

 SharedFuture () noexcept
 SharedFuture (const SharedFuture< T > &other) noexcept
SharedFuture< T > & operator= (const SharedFuture< T > &other) noexcept
 SharedFuture (SharedFuture< T > &&other) noexcept
FutureBaseoperator= (SharedFuture< T > &&other) noexcept
Implementation::FutureGetReturn< T >::Type get () const
void swap (SharedFuture< T > &other) noexcept
void get () const
Public Member Functions inherited from FutureBase
bool valid () const noexcept
bool is_ready () const
bool has_value () const
bool has_exception () const
std::exception_ptr get_exception_ptr () const
FutureStatus::Enum wait (int timeoutInMs) const

Friends

class Implementation::FutureHelper

Additional Inherited Members

Public Types inherited from FutureBase
enum  
Protected Member Functions inherited from FutureBase
 FutureBase ()
 FutureBase (const FutureBase &other) noexcept
FutureBaseoperator= (const FutureBase &other) noexcept
 FutureBase (FutureBase &&other) noexcept
FutureBaseoperator= (FutureBase &&other) noexcept
 FutureBase (const System::FutureSharedState *state) noexcept
 FutureBase (const System::FutureSharedState *state, moving_init_t) noexcept
 ~FutureBase () noexcept
void swap (FutureBase &other) noexcept
const void * getValuePtr () const
void getVoid () const

Detailed Description

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.

Constructor & Destructor Documentation

◆ SharedFuture() [1/3]

template<typename T>
SharedFuture ( )
inlinenoexcept

Definition at line 192 of file Future.h.

◆ SharedFuture() [2/3]

template<typename T>
SharedFuture ( const SharedFuture< T > & other)
inlinenoexcept

Copy constructor.

Definition at line 196 of file Future.h.

◆ SharedFuture() [3/3]

template<typename T>
SharedFuture ( SharedFuture< T > && other)
inlinenoexcept

Definition at line 207 of file Future.h.

Member Function Documentation

◆ get() [1/2]

template<typename T>
Implementation::FutureGetReturn< T >::Type get ( ) const
inline

Returns the result.

If the result is not ready, the method will block. When completes, it either returns a value or throws an exception.

This method waits until the Future has a valid result and retrieves it. It effectively calls wait() in order to wait for the result.

Exceptions
Ifan exception was stored in the shared state referenced by this Future (e.g. via a call to Promise::set_exception()) then that exception will be thrown.

Definition at line 222 of file Future.h.

◆ get() [2/2]

void get ( ) const
inline

Definition at line 244 of file Future.h.

◆ operator=() [1/2]

template<typename T>
SharedFuture< T > & operator= ( const SharedFuture< T > & other)
inlinenoexcept

Copy assignment.

Definition at line 200 of file Future.h.

◆ operator=() [2/2]

template<typename T>
FutureBase & operator= ( SharedFuture< T > && other)
inlinenoexcept

Definition at line 210 of file Future.h.

◆ swap()

template<typename T>
void swap ( SharedFuture< T > & other)
inlinenoexcept

swaps two SharedFuture objects

Definition at line 227 of file Future.h.

◆ Implementation::FutureHelper

template<typename T>
friend class Implementation::FutureHelper
friend

Definition at line 240 of file Future.h.