asio C++ library

PrevUpHomeNext
basic_system_executor::query (3 of 3 overloads)

Query the occupancy (recommended number of work items) for the system context.

std::size_t query(
    execution::occupancy_t ) const;

Do not call this function directly. It is intended for use with the query customisation point.

For example:

asio::system_executor ex;
std::size_t occupancy = asio::query(
    ex, asio::execution::occupancy);

PrevUpHomeNext