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

Public Member Functions

 future () _NOEXCEPT
 
 future (future &&_Other) _NOEXCEPT
 
futureoperator= (future &&_Right) _NOEXCEPT
 
 future (const _Mybase &_State, _Nil)
 
 ~future () _NOEXCEPT
 
_Ty get ()
 
shared_future< _Ty > share ()
 
 future (const future &)=delete
 
futureoperator= (const future &)=delete
 
- Public Member Functions inherited from _State_manager< _Ty >
 _State_manager ()
 
 _State_manager (_Associated_state< _Ty > *_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
 
template<class _Rep , class _Per >
_Future_status wait_for (const chrono::duration< _Rep, _Per > &_Rel_time) const
 
template<class _Clock , class _Dur >
_Future_status wait_until (const chrono::time_point< _Clock, _Dur > &_Abs_time) const
 
_Ty & _Get_value () const
 
void _Set_value (const _Ty &_Val, bool _Defer)
 
void _Set_value (_Ty &&_Val, bool _Defer)
 
void _Abandon ()
 
void _Set_exception (_XSTD exception_ptr _Exc, bool _Defer)
 
void _Swap (_State_manager &_Other)
 
_Associated_state< _Ty > * _Ptr () const
 
void _Copy_from (const _State_manager &_Other)
 
void _Move_from (_State_manager &_Other)
 
bool _Is_ready () const
 

Private Types

typedef _State_manager< _Ty > _Mybase
 

Member Typedef Documentation

template<class _Ty >
typedef _State_manager<_Ty> future< _Ty >::_Mybase
private

Constructor & Destructor Documentation

template<class _Ty >
future< _Ty >::future ( )
inline
1118  { // construct
1119  }
template<class _Ty >
future< _Ty >::future ( future< _Ty > &&  _Other)
inline
1122  : _Mybase(_STD forward<future>(_Other), true)
1123  { // construct from rvalue future object
1124  }
_State_manager< _Ty > _Mybase
Definition: future:1115
template<class _Ty >
future< _Ty >::future ( const _Mybase _State,
_Nil   
)
inline
1133  : _Mybase(_State, true)
1134  { // construct from associated asynchronous state object
1135  }
_State_manager< _Ty > _Mybase
Definition: future:1115
template<class _Ty >
future< _Ty >::~future ( )
inline
1138  { // destroy
1139  }
template<class _Ty >
future< _Ty >::future ( const future< _Ty > &  )
delete

Member Function Documentation

template<class _Ty >
_Ty future< _Ty >::get ( )
inline
1142  { // block until ready then return the stored result or
1143  // throw the stored exception
1144  return (_STD move(this->_Get_value()));
1145  }
_Ty & _Get_value() const
Definition: future:1019
constexpr remove_reference< _Ty >::type && move(_Ty &&_Arg) _NOEXCEPT
Definition: type_traits:1290
template<class _Ty >
future& future< _Ty >::operator= ( future< _Ty > &&  _Right)
inline
1127  { // assign from rvalue future object
1128  _Mybase::operator=(_STD forward<future>(_Right));
1129  return (*this);
1130  }
_State_manager & operator=(const _State_manager &_Other)
Definition: future:974
template<class _Ty >
future& future< _Ty >::operator= ( const future< _Ty > &  )
delete
template<class _Ty >
shared_future<_Ty> future< _Ty >::share ( )
inline
1148  { // return state as shared_future
1149  return (shared_future<_Ty>(_STD move(*this)));
1150  }
constexpr remove_reference< _Ty >::type && move(_Ty &&_Arg) _NOEXCEPT
Definition: type_traits:1290
Definition: future:1108

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