public TransactionCountingStateVisitor(TxStateVisitor next, StorageReader storageReader, ReadableTransactionState txState, CountsRecordState counts) : base(next)
 {
     this._storageReader = storageReader;
     this._txState       = txState;
     this._counts        = counts;
     this._nodeCursor    = storageReader.AllocateNodeCursor();
     this._groupCursor   = storageReader.AllocateRelationshipGroupCursor();
 }
 internal DefaultRelationshipGroupCursor(DefaultCursors pool, StorageRelationshipGroupCursor storeCursor)
 {
     this._pool        = pool;
     this._storeCursor = storeCursor;
 }