NettyApplicationEngine
class NettyApplicationEngine : BaseApplicationEngine
ApplicationEngine implementation for running in a standalone Netty
Types
class Configuration : Configuration Configuration for the NettyApplicationEngine |
Constructors
NettyApplicationEngine( ApplicationEngine implementation for running in a standalone Netty |
Inherited Properties
val environment: ApplicationEngineEnvironment instance of ApplicationEngineEnvironment for this engine |
|
val pipeline: EnginePipeline pipeline to use with this engine |
Functions
fun start(wait: Boolean): NettyApplicationEngine Starts this ApplicationEngine |
|
Stops this ApplicationEngine |
|
fun toString(): String |
Extension Functions
fun ApplicationEngine.addShutdownHook(stop: () -> Unit): Unit Adds automatic JVM shutdown hooks management. Should be used before starting the engine. Once JVM termination noticed, stop block will be executed. Please note that a shutdown hook only registered when the application is running. If the application is already stopped then there will be no hook and no stop function invocation possible. So stop block will be called once or never. |
|
fun ApplicationEngine.stopServerOnCancellation(): CompletableJob Stop server on job cancellation. The returned deferred need to be completed or cancelled. |