All Downloads are FREE. Search and download functionalities are using the official Maven repository.

commonMain.maryk.rocksdb.LevelMetaData.kt Maven / Gradle / Ivy

package maryk.rocksdb

/**
 * The metadata that describes a level.
 */
expect class LevelMetaData {
    /** The level which this meta data describes. */
    fun level(): Int

    /**
     * The size of this level in bytes, which is equal to the sum of
     * the file size of its [.files].
     */
    fun size(): Long

    /** The metadata of all sst files in this level. */
    fun files(): List
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy