<@U0BFDUP0E> I have a question about coroutines im...
# squarelibraries
h
@jw I have a question about coroutines implementation in latest retrofit: In
suspend fun <T : Any> Call<T>.await(): T {}
function, Call gets enqueued on OkHttp thread pool. Shouldn't it be
async { call.execute() }
, so the call uses coroutine dispatcher and things like
runBlocking and ThreadContextElement
work correctly with it?