Esempio n. 1
0
 public PostingListVarIntDeltaWriter(IPersistentStorage storage)
 {
     this.buffer            = new byte[BlockSize + 4 * VarInt.GetByteSize(ulong.MaxValue)];
     this.persistentStorage = storage;
 }
Esempio n. 2
0
 public DeltaVarIntListWriter(IPersistentStorage storage)
 {
     this.buffer            = new byte[BlockSize + VarInt.GetByteSize(ulong.MaxValue)];
     this.persistentStorage = storage;
 }