libstdc++
std::future< void > Class Reference
Inheritance diagram for std::future< void >:
[legend]

Public Types

template<typename _Res >
using _Ptr = unique_ptr< _Res, _Result_base::_Deleter >
 
using _State_base = _State_baseV2
 

Public Member Functions

 future (const future &)=delete
 
 future (future &&__uf) noexcept
 
void get ()
 
futureoperator= (const future &)=delete
 
futureoperator= (future &&__fut) noexcept
 
shared_future< void > share () noexcept
 
bool valid () const noexcept
 
void wait () const
 
future_status wait_for (const chrono::duration< _Rep, _Period > &__rel) const
 
future_status wait_until (const chrono::time_point< _Clock, _Duration > &__abs) const
 

Static Public Member Functions

template<typename _Res , typename _Allocator >
static _Ptr< _Result_alloc< _Res, _Allocator > > _S_allocate_result (const _Allocator &__a)
 
template<typename _Res , typename _Tp >
static _Ptr< _Result< _Res > > _S_allocate_result (const std::allocator< _Tp > &__a)
 
template<typename _Res_ptr , typename _BoundFn >
static _Task_setter< _Res_ptr, _BoundFn > _S_task_setter (_Res_ptr &__ptr, _BoundFn &__call)
 

Protected Types

typedef __future_base::_Result< void > & __result_type
 

Protected Member Functions

__result_type _M_get_result () const
 
void _M_swap (__basic_future &__that) noexcept
 

Friends

template<typename _Fn , typename... _Args>
future< __async_result_of< _Fn, _Args... > > async (launch, _Fn &&, _Args &&...)
 
template<typename >
class packaged_task
 
class promise< void >
 

Detailed Description

Explicit specialization for future<void>

Definition at line 856 of file future.

Member Typedef Documentation

◆ __result_type

typedef __future_base::_Result<void >& std::__basic_future< void >::__result_type
protectedinherited

Definition at line 677 of file future.

◆ _Ptr

template<typename _Res >
using std::__future_base::_Ptr = unique_ptr<_Res, _Result_base::_Deleter>
inherited

A unique_ptr for result objects.

Definition at line 222 of file future.

◆ _State_base

using std::__future_base::_State_base = _State_baseV2
inherited

Definition at line 597 of file future.

Constructor & Destructor Documentation

◆ future() [1/2]

constexpr std::future< void >::future ( )
inlineconstexprnoexcept

Definition at line 871 of file future.

◆ future() [2/2]

std::future< void >::future ( future< void > &&  __uf)
inlinenoexcept

Move constructor.

Definition at line 874 of file future.

Member Function Documentation

◆ _M_get_result()

__result_type std::__basic_future< void >::_M_get_result ( ) const
inlineprotectedinherited

Wait for the state to be ready and rethrow any stored exception.

Definition at line 716 of file future.

◆ _M_swap()

void std::__basic_future< void >::_M_swap ( __basic_future< void > &  __that)
inlineprotectednoexceptinherited

Definition at line 725 of file future.

◆ _S_allocate_result() [1/2]

template<typename _Res , typename _Allocator >
static _Ptr< _Result_alloc< _Res, _Allocator > > std::__future_base::_S_allocate_result ( const _Allocator &  __a)
inlinestaticinherited

Definition at line 287 of file future.

◆ _S_allocate_result() [2/2]

template<typename _Res , typename _Tp >
static _Ptr< _Result< _Res > > std::__future_base::_S_allocate_result ( const std::allocator< _Tp > &  __a)
inlinestaticinherited

Definition at line 300 of file future.

◆ _S_task_setter()

template<typename _Res_ptr , typename _BoundFn >
static _Task_setter< _Res_ptr, _BoundFn > std::__future_base::_S_task_setter ( _Res_ptr &  __ptr,
_BoundFn &  __call 
)
inlinestaticinherited

Definition at line 621 of file future.

◆ get()

void std::future< void >::get ( )
inline

Retrieving the value.

Definition at line 888 of file future.

◆ operator=()

future & std::future< void >::operator= ( future< void > &&  __fut)
inlinenoexcept

Definition at line 880 of file future.

◆ valid()

bool std::__basic_future< void >::valid ( ) const
inlinenoexceptinherited

Definition at line 688 of file future.

◆ wait()

void std::__basic_future< void >::wait ( ) const
inlineinherited

Definition at line 691 of file future.

◆ wait_for()

future_status std::__basic_future< void >::wait_for ( const chrono::duration< _Rep, _Period > &  __rel) const
inlineinherited

Definition at line 699 of file future.

◆ wait_until()

future_status std::__basic_future< void >::wait_until ( const chrono::time_point< _Clock, _Duration > &  __abs) const
inlineinherited

Definition at line 707 of file future.

Friends And Related Symbol Documentation

◆ packaged_task

template<typename >
friend class packaged_task
friend

Definition at line 859 of file future.

◆ promise< void >

friend class promise< void >
friend

Definition at line 851 of file future.


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