Dutch PHP Conference 2025 - Call For Papers

MongoDB\Driver\Monitoring\CommandSucceededEvent::getOperationId

(mongodb >=1.3.0)

MongoDB\Driver\Monitoring\CommandSucceededEvent::getOperationIdReturns the command's operation ID

Опис

final public MongoDB\Driver\Monitoring\CommandSucceededEvent::getOperationId(): string

The operation ID is generated by the extension and may be used to link events together such as bulk write operations, which may have been split across several commands at the protocol level.

Зауваження: Since multiple commands may share the same operation ID, it is not reliable to use this value to associate event objects with each other. The request ID returned by MongoDB\Driver\Monitoring\CommandSucceededEvent::getRequestId() should be used instead.

Параметри

У цієї функції немає параметрів.

Значення, що повертаються

Returns the command's operation ID.

Помилки/виключення

add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top