MongoDB\Driver\Session::endSession
(mongodb >=1.5.0)
MongoDB\Driver\Session::endSession — Terminates a session
説明
final public MongoDB\Driver\Session::endSession
( void
) : void
This method closes an existing session. If a transaction was associated with this session, the transaction will be aborted. After calling this method, applications should not invoke other methods on the session.
注意: Sessions are also closed during garbage collection. It should not be necessary to call this method under normal circumstances.
パラメータ
この関数にはパラメータはありません。
返り値
値を返しません。
エラー / 例外
- 引数のパースに失敗した場合に MongoDB\Driver\Exception\InvalidArgumentException をスローします。
参考
- MongoDB\Driver\Manager::startSession() - Start a new client session for use with this client
- MongoDB\Driver\Session::abortTransaction() - Aborts a transaction
- MongoDB\Driver\Session::commitTransaction() - Commits a transaction
- MongoDB\Driver\Session::startTransaction() - Starts a transaction