コード例 #1
0
ファイル: InteriorNode.cs プロジェクト: Kevnz/KiwiDB
 public InteriorNode(IGistConfig <TKey, TValue> config, IGistIndexRecords <TKey> records)
     : base(config, null)
 {
     Records        = records;
     Block          = config.Blocks.AllocateBlock(GetBytes());
     Block.UserData = this;
 }
コード例 #2
0
ファイル: InteriorNode.cs プロジェクト: Kevnz/KiwiDB
 public InteriorNode(IGistConfig <TKey, TValue> config, IBlock block, IGistIndexRecords <TKey> records)
     : base(config, block)
 {
     Records = records;
 }