-
Notifications
You must be signed in to change notification settings - Fork 155
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce new managed transaction methods and deprecate existing ones
This update introduces new methods for managed transactions, also known as transaction functions. Furthermore, it deprecates the existing methods. The new methods are: - `executeRead` (synchronous and reactive), `executeReadAsync` (asynchronous) - `executeReadWithoutResult` (synchronous) - `executeWrite` (synchronous and reactive), `executeWriteAsync` (asynchronous) - `executeWriteWithoutResult` (synchronous) There are overloaded options that take transaction configuration. The new methods do not permit explicit management (commit, rollback, close) of managed transaction. The driver will attempt committing the transaction as long as the provided unit of work completes successfully.
- Loading branch information
1 parent
350435c
commit 670d8fa
Showing
28 changed files
with
1,759 additions
and
194 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.