xtdb.api.log.Log.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, PathWithEnvVarSerde::class)
package xtdb.api.log
import kotlinx.serialization.UseSerializers
import xtdb.DurationSerde
import xtdb.api.PathWithEnvVarSerde
interface Log : TxLog, FileListCache, AutoCloseable {
interface Factory {
fun openLog(): Log
}
/**
* @suppress
*/
override fun close() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy