boost::asio::bind_immediate_executor
bind_immediate_executor overloads
Synopses
Declared in <boost/asio/bind_immediate_executor.hpp>
Create a partial completion token that associates an executor.
template<typename Executor>
[[nodiscard]]
partial_immediate_executor_binder<Executor>
bind_immediate_executor(Executor const& ex);
Associate an object of type T with a immediate executor of type Executor.
template<
typename Executor,
typename T>
[[nodiscard]]
immediate_executor_binder<decay_t<T>, Executor>
bind_immediate_executor(
Executor const& e,
T&& t);
Created with MrDocs