Start a new stackful coroutine that executes on a given io_service
.
template< typename Function> void spawn( asio::io_service & io_service, Function function, const boost::coroutines::attributes & attributes = boost::coroutines::attributes());
This function is used to launch a new coroutine.
Identifies the io_service
that will run
the coroutine. The new coroutine is implicitly given its own strand
within this io_service
.
The coroutine function. The function must have the signature:
void function(yield_context yield);
Boost.Coroutine attributes used to customise the coroutine.