@@ -325,9 +325,10 @@ class Session {
325
325
/**
326
326
* Return the bookmarks received following the last completed {@link Transaction}.
327
327
*
328
- * @deprecated This method will be removed in version 6.0. Please, use { @link Session#lastBookmarks} instead.
328
+ * @deprecated This method will be removed in version 6.0. Please, use Session#lastBookmarks instead.
329
329
*
330
330
* @return {string[] } A reference to a previous transaction.
331
+ * @see {@link Session#lastBookmarks }
331
332
*/
332
333
lastBookmark ( ) : string [ ] {
333
334
return this . lastBookmarks ( )
@@ -358,13 +359,14 @@ class Session {
358
359
* delay of 1 second and maximum retry time of 30 seconds. Maximum retry time is configurable via driver config's
359
360
* `maxTransactionRetryTime` property in milliseconds.
360
361
*
361
- * @deprecated This method will be removed in version 6.0. Please, use { @link Session#executeRead} instead.
362
+ * @deprecated This method will be removed in version 6.0. Please, use Session#executeRead instead.
362
363
*
363
364
* @param {function(tx: Transaction): Promise } transactionWork - Callback that executes operations against
364
365
* a given {@link Transaction}.
365
366
* @param {TransactionConfig } [transactionConfig] - Configuration for all transactions started to execute the unit of work.
366
367
* @return {Promise } Resolved promise as returned by the given function or rejected promise when given
367
368
* function or commit fails.
369
+ * @see {@link Session#executeRead }
368
370
*/
369
371
readTransaction < T > (
370
372
transactionWork : TransactionWork < T > ,
@@ -382,13 +384,14 @@ class Session {
382
384
* delay of 1 second and maximum retry time of 30 seconds. Maximum retry time is configurable via driver config's
383
385
* `maxTransactionRetryTime` property in milliseconds.
384
386
*
385
- * @deprecated This method will be removed in version 6.0. Please, use { @link Session#executeWrite} instead.
387
+ * @deprecated This method will be removed in version 6.0. Please, use Session#executeWrite instead.
386
388
*
387
389
* @param {function(tx: Transaction): Promise } transactionWork - Callback that executes operations against
388
390
* a given {@link Transaction}.
389
391
* @param {TransactionConfig } [transactionConfig] - Configuration for all transactions started to execute the unit of work.
390
392
* @return {Promise } Resolved promise as returned by the given function or rejected promise when given
391
393
* function or commit fails.
394
+ * @see {@link Session#executeWrite }
392
395
*/
393
396
writeTransaction < T > (
394
397
transactionWork : TransactionWork < T > ,
0 commit comments