Last active
December 1, 2021 22:20
-
-
Save ForceTower/961588b2f60a26087b6bbcc316c608a5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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