Package org.rocksdb
Class LevelMetaData
- java.lang.Object
-
- org.rocksdb.LevelMetaData
-
public class LevelMetaData extends java.lang.ObjectThe metadata that describes a level.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<SstFileMetaData>files()The metadata of all sst files in this level.intlevel()The level which this meta data describes.longsize()The size of this level in bytes, which is equal to the sum of the file size of itsfiles().
-
-
-
Method Detail
-
level
public int level()
The level which this meta data describes.- Returns:
- the level
-
size
public long size()
The size of this level in bytes, which is equal to the sum of the file size of itsfiles().- Returns:
- the size
-
files
public java.util.List<SstFileMetaData> files()
The metadata of all sst files in this level.- Returns:
- the metadata of the files
-
-