asio C++ library

PrevUpHomeNext

basic_waitable_timer::expires_after

Set the timer's expiry time relative to now.

std::size_t expires_after(
    const duration & expiry_time);

This function sets the expiry time. Any pending asynchronous wait operations will be cancelled. The handler for each cancelled operation will be invoked with the asio::error::operation_aborted error code.

Parameters

expiry_time

The expiry time to be used for the timer.

Return Value

The number of asynchronous operations that were cancelled.

Exceptions

asio::system_error

Thrown on failure.

Remarks

If the timer has already expired when expires_after() is called, then the handlers for asynchronous wait operations will:

These handlers can no longer be cancelled, and therefore are passed an error code that indicates the successful completion of the wait operation.


PrevUpHomeNext