abstract class Engine
<init> |
Engine() |
authInterceptor |
var |
requestInterceptor |
var requestInterceptor: (Request) -> Unit |
responseInterceptor |
var responseInterceptor: (Response) -> Unit |
request |
abstract fun request(seq: Long, method: Method, uri: URI, entity: Any? = null): Request |
reset |
abstract fun reset(): Unit |
setBasicAuth |
abstract fun setBasicAuth(username: String, password: String): Unit |
setDigestAuth |
abstract fun setDigestAuth(username: String, password: String): Unit |
HttpClientEngine |
open class HttpClientEngine : Engine |
HttpURLEngine |
open class HttpURLEngine : Engine |