예제 #1
0
 public StorageEngineDataPointWriter(
     IStorageTree storageTree,
     BucketReference bucketReference)
 {
     this.storageTree = storageTree;
     this.bucketReference = bucketReference;
 }
예제 #2
0
 public StorageNode(
     IStorageTree storageTree,
     string name,
     IStorageNodeConfiguration nodeConfiguration)
 {
     this.nodeConfiguration = nodeConfiguration;
     FilePath = Path.Combine(storageTree.FilePath, name);
 }