Engines
Ktor HTTP Client has a common interface but allows to specify an engine that processes the network request. Different engines have different configurations, dependencies and supporting features.
By calling to the method without specifying an engine, it uses a default engine.
In the case of the JVM, the default engine is resolved with a ServiceLoader, getting the first one available sorted in alphabetical order. Thus depends on the artifacts you have included.
For native, the engine detected during static linkage. Please provide one of the native engines in artifacts.
For js, it uses the predefined one.
Configuring engines
Ktor HttpClient lets you configure the parameters of each engine by calling:
HttpClient(MyHttpEngine) {
engine {
// this: MyHttpEngineConfig
}
}
Every engine config has some common properties that can be set:
The
pipelining
is an experimental flag to enable HTTP pipelining.
val client = HttpClient(MyHttpEngine) {
engine {
threadsCount = 4
pipelining = true
}
}
Apache
Apache HTTP client supports HTTP/1.1 and provides multiple configuration options. It is the only one that supports following redirects and allows you to configure timeouts, proxies among other things it is supported by org.apache.httpcomponents:httpasyncclient
.
A sample configuration would look like:
CIO (Coroutine-based I/O) is a Ktor implementation with no additional dependencies and is fully asynchronous. It only supports HTTP/1.x for now.
CIO provides maxConnectionsCount
and a endpointConfig
for configuring.
A sample configuration would look like:
val client = HttpClient(CIO) {
engine {
/**
* Maximum number of socket connections.
*/
maxConnectionsCount = 1000
/**
* Endpoint specific settings.
*/
endpoint {
/**
*/
maxConnectionsPerRoute = 100
/**
* Max size of scheduled requests per connection(pipeline queue size).
*/
pipelineMaxSize = 20
/**
*/
keepAliveTime = 5000
/**
* Number of milliseconds to wait trying to connect to the server.
*/
connectTimeout = 5000
/**
* Maximum number of attempts for retrying a connection.
*/
connectAttempts = 5
}
/**
* Https specific settings.
*/
https {
/**
* Custom server name for TLS server name extension.
* See also: https://en.wikipedia.org/wiki/Server_Name_Indication
*/
serverName = "api.ktor.io"
/**
* List of allowed [CipherSuite]s.
*/
cipherSuites = CIOCipherSuites.SupportedSuites
* Custom [X509TrustManager] to verify server authority.
*
* Use system by default.
*/
trustManager = myCustomTrustManager
/**
* [SecureRandom] to use in encryption.
random = mySecureRandom
}
}
}
Jetty
Jetty provides an additional sslContextFactory
for configuring. It only supports HTTP/2 for now.
A sample configuration would look like:
val client = HttpClient(Jetty) {
engine {
sslContextFactory = SslContextFactory()
}
}
JVM and Android
Android
The Android engine doesn’t have additional dependencies and uses a ThreadPool with a normal HttpURLConnection, to perform the requests. And can be configured like this:
val client = HttpClient(Android) {
engine {
connectTimeout = 100_000
socketTimeout = 100_000
/**
* Proxy address to use.
*/
proxy = Proxy(Proxy.Type.HTTP, InetSocketAddress("localhost", serverPort))
}
}
The iOS engine uses the asynchronous NSURLSession
internally. And have no additional configuration.
val client = HttpClient(Ios) {
/**
* Configure native NSUrlRequest.
*/
configureRequest { // this: NSMutableURLRequest
setAllowsCellularAccess(true)
// ...
}
}
Js (JavaScript)
The Js
engine, uses the fetch
API internally(and node-fetch
for node.js runtime).
Js engine has no custom configuration.
You can also call the JsClient()
function to get the Js
engine singleton.
There is an engine based on Curl:
val client = HttpClient(Curl)
Supported platforms: linux_x64, macos_x64, mingw_x64. Please note that to use the engine you must have the installed curl library at least version 7.63
The MockEngine
is the common engine for testing. See also .