org.http4k.config.Timeout.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http4k-config Show documentation
Show all versions of http4k-config Show documentation
Machinery for configuring Http4k apps in a typesafe way
The newest version!
package org.http4k.config
import java.time.Duration
data class Timeout(val value: Duration) {
init {
require(!value.isNegative) { "Timeout cannot be negative" }
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy