Esempio n. 1
0
 public void Dispose()
 {
     this.duplicate = null;
     this.start     = null;
     this.current   = null;
 }
Esempio n. 2
0
 public BtreeIndexDuplicateCollection(BtreeIndexDuplicate duplicate, JumpRecord start)
 {
     this.duplicate = duplicate;
     this.start     = start;
 }
Esempio n. 3
0
 public Enumerator(BtreeIndexDuplicate duplicate, JumpRecord start)
 {
     this.duplicate = duplicate;
     this.start     = start;
     this.current   = start;
 }
Esempio n. 4
0
 /// <summary>
 ///
 /// </summary>
 /// <param name="duplicate"></param>
 /// <param name="start"> the start jumprecord in the most bottom</param>
 public BtreeIndexDuplicateReader(BtreeIndexDuplicate duplicate, JumpRecord start)
 {
     this.duplicate = duplicate;
     this.start     = start;
     this.current   = start;
 }