Beispiel #1
0
 private void ZapPage(long?pageId)
 {
     try
     {
         using (PageCursor cursor = _cursorSupplier.get())
         {
             cursor.Next(pageId.Value);
             cursor.ZapPage();
         }
     }
     catch (IOException)
     {
         throw new Exception("Could not go to page " + pageId);
     }
 }