NettyEpollHttpServer

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.

Constructors

Link copied to clipboard
constructor(    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)
constructor()

Functions

Link copied to clipboard
open override fun groupSupplier(it: Int): MultithreadEventLoopGroup
Link copied to clipboard
open fun options(): Map<String, *>
Link copied to clipboard
open fun runtimePort(): Int
Link copied to clipboard
open override fun serverBootstrapSupplier(bossGroup: MultithreadEventLoopGroup, workerGroup: MultithreadEventLoopGroup): ServerBootstrap
Link copied to clipboard
open fun shutDown()
Link copied to clipboard
open fun started(): Boolean
Link copied to clipboard
open fun startUp(server: HttpServer)
Link copied to clipboard
Link copied to clipboard