executeIn

abstract fun executeIn(scope: CoroutineScope): Pair<SendChannel<S>, Deferred<R>>

Enqueues this call for execution and returns a channel to send the call's messages and a deferred response that will ensure the sender is closed and return the single response. This uses the Dispatchers.IO to transmit outbound messages.