...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
explicit basic_deadline_timer( const executor_type & ex); » more... template< typename ExecutionContext> explicit basic_deadline_timer( ExecutionContext & context, typename constraint< is_convertible< ExecutionContext &, execution_context & >::value >::type = 0); » more...
Constructor to set a particular expiry time as an absolute time.
basic_deadline_timer( const executor_type & ex, const time_type & expiry_time); » more... template< typename ExecutionContext> basic_deadline_timer( ExecutionContext & context, const time_type & expiry_time, typename constraint< is_convertible< ExecutionContext &, execution_context & >::value >::type = 0); » more...
Constructor to set a particular expiry time relative to now.
basic_deadline_timer( const executor_type & ex, const duration_type & expiry_time); » more... template< typename ExecutionContext> basic_deadline_timer( ExecutionContext & context, const duration_type & expiry_time, typename constraint< is_convertible< ExecutionContext &, execution_context & >::value >::type = 0); » more...
Move-construct a basic_deadline_timer
from another.
basic_deadline_timer( basic_deadline_timer && other); » more...