コード例 #1
0
 internal NodeDeletingWriter(IndexPopulationJobTest outerInstance, long nodeToDelete, int propertyKeyId, object valueToDelete, int label)
 {
     this._outerInstance = outerInstance;
     this.NodeToDelete   = nodeToDelete;
     this.ValueToDelete  = Values.of(valueToDelete);
     this.Index          = SchemaDescriptorFactory.forLabel(label, propertyKeyId);
 }
コード例 #2
0
 internal NodeChangingWriter(IndexPopulationJobTest outerInstance, long nodeToChange, int propertyKeyId, object previousValue, object newValue, int label)
 {
     this._outerInstance = outerInstance;
     this.NodeToChange   = nodeToChange;
     this.PreviousValue  = Values.of(previousValue);
     this.NewValue       = Values.of(newValue);
     this.Index          = SchemaDescriptorFactory.forLabel(label, propertyKeyId);
 }
コード例 #3
0
 public IndexStoreView_AdaptorAnonymousInnerClass(IndexPopulationJobTest outerInstance)
 {
     this.outerInstance = outerInstance;
 }