![JAR search and dependency download from the Maven repository](/logo.png)
org.http4k.cloudnative.env.Port.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-cloudnative Show documentation
Show all versions of http4k-cloudnative Show documentation
Machinery for running Http4k apps in cloud-native environments
package org.http4k.cloudnative.env
data class Port(val value: Int) {
init {
require(value <= 65535) { "Out of range Port: '$value'" }
}
companion object {
val RANDOM = Port(0)
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy