internal DefaultRelationshipGroupCursor(DefaultCursors pool, StorageRelationshipGroupCursor storeCursor)
 {
     this._pool        = pool;
     this._storeCursor = storeCursor;
 }
 internal DefaultNodeLabelIndexCursor(DefaultCursors pool)
 {
     this._pool = pool;
     _node      = NO_ID;
 }
 internal DefaultRelationshipTraversalCursor(DefaultCursors pool, StorageRelationshipTraversalCursor storeCursor) : base(pool, storeCursor)
 {
 }
Пример #4
0
 internal Read(DefaultCursors cursors, KernelTransactionImplementation ktx)
 {
     this._cursors = cursors;
     this.Ktx      = ktx;
 }
Пример #5
0
 internal DefaultPropertyCursor(DefaultCursors pool, StoragePropertyCursor storeCursor)
 {
     this._pool        = pool;
     this._storeCursor = storeCursor;
 }
Пример #6
0
 internal DefaultRelationshipCursor(DefaultCursors pool, STORECURSOR storeCursor)
 {
     this.Pool        = pool;
     this.StoreCursor = storeCursor;
 }
Пример #7
0
 internal DefaultNodeCursor(DefaultCursors pool, StorageNodeCursor storeCursor)
 {
     this._pool        = pool;
     this._storeCursor = storeCursor;
 }
 internal DefaultRelationshipExplicitIndexCursor(DefaultRelationshipScanCursor scanCursor, DefaultCursors pool)
 {
     this._scanCursor = scanCursor;
     this._pool       = pool;
 }
Пример #9
0
 internal DefaultNodeValueIndexCursor(DefaultCursors pool)
 {
     this._pool  = pool;
     _node       = NO_ID;
     _indexOrder = IndexOrder.NONE;
 }
 internal DefaultRelationshipScanCursor(DefaultCursors pool, StorageRelationshipScanCursor storeCursor) : base(pool, storeCursor)
 {
 }
Пример #11
0
 internal DefaultNodeExplicitIndexCursor(DefaultCursors pool)
 {
     this._pool = pool;
     _node      = NO_ID;
 }