STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Public Member Functions | Private Types | List of all members
shared_future< void > Class Template Reference
Inheritance diagram for shared_future< void >:
_State_manager< int >

Public Member Functions

 shared_future () _NOEXCEPT
 
 shared_future (const shared_future &_Other)
 
shared_futureoperator= (const shared_future &_Right)
 
 shared_future (shared_future &&_Other) _NOEXCEPT
 
 shared_future (future< void > &&_Other) _NOEXCEPT
 
shared_futureoperator= (shared_future &&_Right)
 
 ~shared_future () _NOEXCEPT
 
void get () const
 
- Public Member Functions inherited from _State_manager< int >
 _State_manager ()
 
 _State_manager (_Associated_state< int > *_New_state, bool _Get_once)
 
 _State_manager (const _State_manager &_Other, bool _Get_once=false)
 
 _State_manager (_State_manager &&_Other, bool _Get_once=false)
 
 ~_State_manager () _NOEXCEPT
 
_State_manageroperator= (const _State_manager &_Other)
 
_State_manageroperator= (_State_manager &&_Other)
 
bool valid () const _NOEXCEPT
 
void wait () const
 
_Future_status wait_for (const chrono::duration< _Rep, _Per > &_Rel_time) const
 
_Future_status wait_until (const chrono::time_point< _Clock, _Dur > &_Abs_time) const
 
int & _Get_value () const
 
void _Set_value (const int &_Val, bool _Defer)
 
void _Set_value (int &&_Val, bool _Defer)
 
void _Abandon ()
 
void _Set_exception (_XSTD exception_ptr _Exc, bool _Defer)
 
void _Swap (_State_manager &_Other)
 
_Associated_state< int > * _Ptr () const
 
void _Copy_from (const _State_manager &_Other)
 
void _Move_from (_State_manager &_Other)
 
bool _Is_ready () const
 

Private Types

typedef _State_manager< int > _Mybase
 

Member Typedef Documentation

typedef _State_manager<int> shared_future< void >::_Mybase
private

Constructor & Destructor Documentation

1355  { // construct
1356  }
shared_future< void >::shared_future ( const shared_future< void > &  _Other)
inline
1359  : _Mybase(_Other)
1360  { // construct from shared_future object
1361  }
_State_manager< int > _Mybase
Definition: future:1351
shared_future< void >::shared_future ( shared_future< void > &&  _Other)
inline
1370  : _Mybase(_STD forward<shared_future>(_Other))
1371  { // construct from rvalue shared_future object
1372  }
_State_manager< int > _Mybase
Definition: future:1351
shared_future< void >::shared_future ( future< void > &&  _Other)
inline
1375  : _Mybase(_STD forward<_Mybase>(_Other))
1376  { // construct from rvalue future object
1377  }
_State_manager< int > _Mybase
Definition: future:1351
shared_future< void >::~shared_future ( )
inline
1386  { // destroy
1387  }

Member Function Documentation

void shared_future< void >::get ( ) const
inline
1390  { // block until ready then return or
1391  // throw the stored exception
1392  this->_Get_value();
1393  }
int & _Get_value() const
Definition: future:1019
shared_future& shared_future< void >::operator= ( const shared_future< void > &  _Right)
inline
1364  { // assign from shared_future object
1365  _Mybase::operator=(_Right);
1366  return (*this);
1367  }
_State_manager & operator=(const _State_manager &_Other)
Definition: future:974
shared_future& shared_future< void >::operator= ( shared_future< void > &&  _Right)
inline
1380  { // assign from rvalue shared_future object
1381  _Mybase::operator=(_STD forward<shared_future>(_Right));
1382  return (*this);
1383  }
_State_manager & operator=(const _State_manager &_Other)
Definition: future:974

The documentation for this class was generated from the following file: