xtdb.api.metrics.HealthzConfig.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of xtdb-core Show documentation
Show all versions of xtdb-core Show documentation
An open source document database with bitemporal graph queries
The newest version!
package xtdb.api.metrics
import kotlinx.serialization.Serializable
@Serializable
data class HealthzConfig(var port: Int = 8080) {
fun port(port: Int) = apply { this.port = port }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy