HttpServerSettings

data class HttpServerSettings(host: String, port: Int, connectionIdleTimeoutSeconds: Long)

HTTP server connector settings

Constructors

Link copied to clipboard
fun HttpServerSettings(host: String = "0.0.0.0", port: Int = 8080, connectionIdleTimeoutSeconds: Long = 45)

Properties

Link copied to clipboard
val connectionIdleTimeoutSeconds: Long = 45

time to live for IDLE connections

Link copied to clipboard
val host: String

to listen to

Link copied to clipboard
val port: Int = 8080

to listen to