asio C++ library

PrevUpHomeNext
cancellation_state::cancellation_state (4 of 4 overloads)

Construct and attach to a parent slot to create a new child slot.

template<
    typename CancellationSlot,
    typename InFilter,
    typename OutFilter>
constexpr cancellation_state(
    CancellationSlot slot,
    InFilter in_filter,
    OutFilter out_filter);
Parameters

slot

The parent cancellation slot to which the state will be attached.

in_filter

A function object that is used to transform incoming cancellation signals as they are received from the parent slot. This function object must have the signature:

asio::cancellation_type_t in_filter(
    asio::cancellation_type_t);
out_filter

A function object that is used to transform outcoming cancellation signals as they are relayed to the child slot. This function object must have the signature:

asio::cancellation_type_t out_filter(
    asio::cancellation_type_t);

The library provides the following pre-defined cancellation filters:


PrevUpHomeNext