All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.authing.core.http.Call.kt Maven / Gradle / Ivy

There is a newer version: 4.3.79
Show newest version
package cn.authing.core.http

import okhttp3.Request
import java.io.IOException

interface Call {
    @Throws(IOException::class)
    fun execute(): TResult
    fun enqueue(callback: Callback)
    fun isExecuted(): Boolean
    fun cancel()
    fun isCanceled(): Boolean
    fun request(): Request?
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy