Skip to content

Instantly share code, notes, and snippets.

@ForceTower
Last active December 1, 2021 22:20
Show Gist options
  • Save ForceTower/961588b2f60a26087b6bbcc316c608a5 to your computer and use it in GitHub Desktop.
Save ForceTower/961588b2f60a26087b6bbcc316c608a5 to your computer and use it in GitHub Desktop.
import kotlinx.coroutines.suspendCancellableCoroutine
import okhttp3.Call
import okhttp3.Callback
import okhttp3.Response
import java.io.IOException
import kotlin.coroutines.resume
import kotlin.coroutines.resumeWithException
suspend fun Call.executeSuspend() = suspendCancellableCoroutine<ResponseBody> { continuation ->
this.enqueue(object : Callback {
override fun onFailure(call: Call, e: IOException) {
continuation.resumeWithException(e)
}
override fun onResponse(call: Call, response: Response) {
continuation.resume(response.peek(Long.MAX_VALUE))
}
})
continuation.invokeOnCancellation { this.cancel() }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment