xtdb.api.CompactorConfig.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!
@file:UseSerializers(DurationSerde::class, BooleanWithEnvVarSerde::class)
package xtdb.api
import kotlinx.serialization.Serializable
import kotlinx.serialization.UseSerializers
import xtdb.api.BooleanWithEnvVarSerde
import xtdb.DurationSerde
import java.time.Duration
@Serializable
data class CompactorConfig(var enabled: Boolean = true) {
fun enabled(enabled: Boolean) = apply { this.enabled = enabled }
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy