MongoDB\Driver\Session::abortTransaction
(mongodb >=1.5.0)
MongoDB\Driver\Session::abortTransaction — Aborts a transaction
説明
final public MongoDB\Driver\Session::abortTransaction ( ) : void
Terminates the multi-document transaction and rolls back any data changes made by the operations within the transaction. That is, the transaction ends without saving any of the changes made by the operations in the transaction.
パラメータ
この関数にはパラメータはありません。
返り値
値を返しません。
エラー / 例外
- 引数のパースに失敗した場合に MongoDB\Driver\Exception\InvalidArgumentException をスローします。
- Throws MongoDB\Driver\Exception\RuntimeException if the transaction could not be aborted (e.g. a transaction was not started).
参考
- MongoDB\Driver\Manager::startSession() - Start a new client session for use with this client
- MongoDB\Driver\Session::commitTransaction() - Commits a transaction
- MongoDB\Driver\Session::startTransaction() - Starts a transaction