提交 26c0e2de authored 作者: Thomas Mueller's avatar Thomas Mueller

Documentation.

上级 dbdc02e0
...@@ -612,13 +612,37 @@ public class BtreeMapStore { ...@@ -612,13 +612,37 @@ public class BtreeMapStore {
* A block of data. * A block of data.
*/ */
static class Block { static class Block {
public int collectPriority;
/**
* The block id.
*/
int id; int id;
/**
* The start position within the file.
*/
long start; long start;
/**
* The length in bytes.
*/
long length; long length;
/**
* The entry count.
*/
int entryCount; int entryCount;
/**
* The number of life (non-garbage) objects.
*/
int liveCount; int liveCount;
/**
* The garbage collection priority.
*/
int collectPriority;
Block(int id) { Block(int id) {
this.id = id; this.id = id;
} }
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论