Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit da13e55

Browse files
daprahamianmbroadst
authored andcommitted
feat: add ability to pin server to transaction state machine
1 parent ebefb7b commit da13e55

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

lib/transactions.js

+20
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,13 @@ class Transaction {
101101

102102
if (options.readConcern) this.options.readConcern = options.readConcern;
103103
if (options.readPreference) this.options.readPreference = options.readPreference;
104+
105+
// TODO: This isn't technically necessary
106+
this._pinnedServer = undefined;
107+
}
108+
109+
get server() {
110+
return this._pinnedServer;
104111
}
105112

106113
/**
@@ -122,13 +129,26 @@ class Transaction {
122129
const nextStates = stateMachine[this.state];
123130
if (nextStates && nextStates.indexOf(nextState) !== -1) {
124131
this.state = nextState;
132+
if (this.state === TxnState.NO_TRANSACTION) {
133+
this.unpinServer();
134+
}
125135
return;
126136
}
127137

128138
throw new MongoError(
129139
`Attempted illegal state transition from [${this.state}] to [${nextState}]`
130140
);
131141
}
142+
143+
pinServer(server) {
144+
if (this.isActive) {
145+
this._pinnedServer = server;
146+
}
147+
}
148+
149+
unpinServer() {
150+
this._pinnedServer = undefined;
151+
}
132152
}
133153

134154
module.exports = { TxnState, Transaction };

0 commit comments

Comments
 (0)