Interface HgkvDir
-
- All Superinterfaces:
java.lang.AutoCloseable,java.io.Closeable,HgkvFile
- All Known Implementing Classes:
HgkvDirImpl
public interface HgkvDir extends HgkvFile
One HgkvDir consists of segments, and each segment is a HgkvFile. one HgkvFile is a complete file, one HgkvDir consists of multiple HgkvFile.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.List<HgkvFile>segments()Return the segments in HgkvDir.-
Methods inherited from interface org.apache.hugegraph.computer.core.store.file.hgkvfile.HgkvFile
magic, max, min, numEntries, numSubEntries, output, path, version
-
-
-
-
Method Detail
-
segments
java.util.List<HgkvFile> segments()
Return the segments in HgkvDir. A HgkvDir is a complete file, HgkvDir consists of multiple HgkvFile.
-
-