Lines Matching refs:transactionId
70 addApply(transactionId) {
71 this.applied[transactionId] = true;
72 this.addToHistoryOf(transactionId, new Apply(transactionId));
75 addToHistoryOf(transactionId, event) {
76 if (!this.history[transactionId]) {
77 this.history[transactionId] = [];
79 this.history[transactionId].push(event);
82 generateHistoryTreesOf(transactionId) {
83 return this._generateHistoryTree(transactionId);
86 _generateHistoryTree(transactionId, upTo = null) {
87 if (!this.history[transactionId]) {
92 const events = this.history[transactionId]; constant
122 allTransactionsMergedInto(transactionId) {
126 const toVisit = this.generateHistoryTreesOf(transactionId);
147 allDirectMergesInto(transactionId) {
148 return (this.history[transactionId] ?? [])
197 transactionId: Number; property in Apply
199 constructor(transactionId) {
200 this.transactionId = transactionId;
212 export function expandTransactionId(transactionId) {
217 id: Math.round(transactionId % Math.pow(2, 32)),
218 pid: Math.round(transactionId / Math.pow(2, 32)),