cn.authing.core.http.Call.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-core Show documentation
Show all versions of java-core Show documentation
java backend sdk for authing
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