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)
 {
 }
Exemplo n.º 4
0
 internal Read(DefaultCursors cursors, KernelTransactionImplementation ktx)
 {
     this._cursors = cursors;
     this.Ktx      = ktx;
 }
Exemplo n.º 5
0
 internal DefaultPropertyCursor(DefaultCursors pool, StoragePropertyCursor storeCursor)
 {
     this._pool        = pool;
     this._storeCursor = storeCursor;
 }
Exemplo n.º 6
0
 internal DefaultRelationshipCursor(DefaultCursors pool, STORECURSOR storeCursor)
 {
     this.Pool        = pool;
     this.StoreCursor = storeCursor;
 }
Exemplo n.º 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;
 }
Exemplo n.º 9
0
 internal DefaultNodeValueIndexCursor(DefaultCursors pool)
 {
     this._pool  = pool;
     _node       = NO_ID;
     _indexOrder = IndexOrder.NONE;
 }
 internal DefaultRelationshipScanCursor(DefaultCursors pool, StorageRelationshipScanCursor storeCursor) : base(pool, storeCursor)
 {
 }
Exemplo n.º 11
0
 internal DefaultNodeExplicitIndexCursor(DefaultCursors pool)
 {
     this._pool = pool;
     _node      = NO_ID;
 }