org.http4k.server.deprecatedCloudNativeExt.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-platform-k8s Show documentation
Show all versions of http4k-platform-k8s Show documentation
http4k K8S integration tooling
The newest version!
package org.http4k.server
import org.http4k.config.Port
import org.http4k.core.HttpHandler
@Deprecated("This is extraneous", ReplaceWith("asServer(fn(8000))"))
fun HttpHandler.asServer(fn: (Int) -> ServerConfig, port: Port) = fn(port.value).toServer(this)
© 2015 - 2024 Weber Informatics LLC | Privacy Policy