All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jvmMain.kr.jadekim.jext.ktor.BaseKtorNettyServer.kt Maven / Gradle / Ivy

The newest version!
package kr.jadekim.jext.ktor

import io.ktor.server.netty.*
import kotlin.coroutines.CoroutineContext
import kotlin.coroutines.EmptyCoroutineContext

abstract class BaseKtorNettyServer(
    serverName: String? = null,
    serviceHost: String = "0.0.0.0",
    servicePort: Int = 80,
    isDevelopmentMode: Boolean = false,
    rootPath: String = "",
    parentCoroutineContext: CoroutineContext = EmptyCoroutineContext,
) : BaseKtorServer(
    Netty,
    serverName,
    serviceHost,
    servicePort,
    isDevelopmentMode,
    rootPath,
    parentCoroutineContext,
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy