pub fn spawn_coroutine_with_context<T, F, C, Fut>(
context: C,
f: F,
) -> CommunicationTask<T>
Expand description
Spawns a new asynchronous task with provided context that accepts messages to the task using channels
.
This function returns a handle that allows sending a message, or if there is no reference to the handle at all
(in other words, all handles are dropped), the task would be aborted.