Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
any_io_executor::prefer (7 of 7 overloads)

Inherited from execution::any_executor.

Obtain a polymorphic wrapper with the specified property.

template<
    typename Property>
any_executor prefer(
    Property ) const;

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

For example:

execution::any_executor<execution::blocking_t::possibly_t> ex = ...;
auto ex2 = boost::asio::prefer(ex, execution::blocking.possibly);

PrevUpHomeNext