Exemple #1
0
 public Leaf <K, V> GetMinLeaf()
 {
     lock (_bPlusTree)
         return(_bPlusTree.GetMinLeaf());
 }
Exemple #2
0
 public Leaf <K, V> GetMinLeaf()
 {
     _rwLock.EnterReadLock();
     try { return(_bPlusTree.GetMinLeaf()); }
     finally { _rwLock.ExitReadLock(); }
 }