You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/sessions.ts
+16-2
Original file line number
Diff line number
Diff line change
@@ -124,6 +124,10 @@ export class ClientSession
124
124
owner?: symbol|AbstractCursor;
125
125
defaultTransactionOptions: TransactionOptions;
126
126
transaction: Transaction;
127
+
/** @internal
128
+
* Keeps track of whether or not the current transaction has attempted to be committed. Is
129
+
* initially undefined. Gets set to false when startTransaction is called. When commitTransaction is sent to server, if the commitTransaction succeeds, it is then set to undefined, otherwise, set to true */
0 commit comments