Пример #1
0
 public StorageFragment(IDualBinaryStore store)
 {
     bool isFragmented;
     _tableOfContent = Store.TableOfContent.From(store.Right, out isFragmented);
     _maintenance = new StorageMaintenance(this, this) { IsFragmented = isFragmented };
     _store = store.Left;
     _tableOfContentStore = store.Right;
 }
Пример #2
0
 internal RightBinaryStoreSegment(IDualBinaryStore store)
 {
     _store = store;
 }