src/transaction-managed-rx.js
/**
* Copyright (c) "Neo4j"
* Neo4j Sweden AB [https://neo4j.com]
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
// eslint-disable-next-line no-unused-vars
import RxResult from './result-rx'
// eslint-disable-next-line no-unused-vars
import RxTransaction from './transaction-rx'
/**
* Represents a rx transaction that is managed by the transaction executor.
*
* @public
*/
class RxManagedTransaction {
/**
* @private
*/
constructor ({ run }) {
this._run = run
}
/**
* @private
* @param {RxTransaction} txc - The transaction to be wrapped
* @returns {RxManagedTransaction} The managed transaction
*/
static fromTransaction (txc) {
return new RxManagedTransaction({
run: txc.run.bind(txc)
})
}
/**
* Creates a reactive result that will execute the query in this transaction, with the provided parameters.
*
* @public
* @param {string} query - Query to be executed.
* @param {Object} parameters - Parameter values to use in query execution.
* @returns {RxResult} - A reactive result
*/
run (query, parameters) {
return this._run(query, parameters)
}
}
export default RxManagedTransaction