Package-level declarations

Code implementing the Netty HTTP server adapter using Epoll transport.

Types

Link copied to clipboard
class NettyEpollHttpServer(    bossGroupThreads: Int = 1,     workerGroupThreads: Int = 0,     executorThreads: Int = Platform.cpuCount * 2,     soBacklog: Int = 4 * 1_024,     soReuseAddr: Boolean = true,     soKeepAlive: Boolean = true,     shutdownQuietSeconds: Long = 0,     shutdownTimeoutSeconds: Long = 0,     keepAliveHandler: Boolean = true,     httpAggregatorHandler: Boolean = true,     chunkedHandler: Boolean = true,     enableWebsockets: Boolean = true) : NettyHttpServer

Implements HttpServerPort using Netty Epoll Channel.