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
{{ message }}
This repository was archived by the owner on Feb 4, 2022. It is now read-only.
Copy file name to clipboardexpand all lines: lib/sessions.js
+103-1
Original file line number
Diff line number
Diff line change
@@ -243,6 +243,106 @@ class ClientSession extends EventEmitter {
243
243
toBSON(){
244
244
thrownewError('ClientSession cannot be serialized to BSON.');
245
245
}
246
+
247
+
/**
248
+
* A user provided function to be run within a transaction
249
+
*
250
+
* @callback WithTransactionCallback
251
+
* @param {ClientSession} session The parent session of the transaction running the operation. This should be passed into each operation within the lambda.
252
+
* @returns {Promise} The resulting Promise of operations run within this transaction
253
+
*/
254
+
255
+
/**
256
+
* Runs a provided lambda within a transaction, retrying either the commit operation
257
+
* or entire transaction as needed (and when the error permits) to better ensure that
258
+
* the transaction can complete successfully.
259
+
*
260
+
* IMPORTANT: This method requires the user to return a Promise, all lambdas that do not
261
+
* return a Promise will result in undefined behavior.
262
+
*
263
+
* @param {WithTransactionCallback} fn
264
+
* @param {TransactionOptions} [options] Optional settings for the transaction
0 commit comments