LonghornPHP 2026

The MongoDB\Driver\Monitoring\ServerHeartbeatSucceededEvent class

(mongodb >=1.13.0)

Introduzione

The MongoDB\Driver\Monitoring\ServerHeartbeatSucceededEvent class encapsulates information about a successful server heartbeat (i.e. » hello command issued through » server monitoring).

Sommario della classe

final class MongoDB\Driver\Monitoring\ServerHeartbeatSucceededEvent {
/* Proprietà */
public readonly string $host;
public readonly int $port;
public readonly bool $awaited;
public readonly int $duration;
public readonly object $reply;
/* Metodi */
final public function getDurationMicros(): int
final public function getHost(): string
final public function getPort(): int
final public function getReply(): object
final public function isAwaited(): bool
}

Proprietà

host

The hostname of the server.

port

The port of the server.

awaited

Whether the heartbeat used a streaming protocol. The extension does not use the streaming protocol for monitoring, so this method will always return false.

duration

The duration of the heartbeat in microseconds. The duration is a calculated value that includes the time to send the message and receive the response from the server.

reply

The reply document returned by the server.

Log delle modifiche

Versione Descrizione
PECL mongodb 2.3.0 Added public readonly properties. The duration property replaces the getDurationMicros() method.

Indice dei contenuti

add a note

User Contributed Notes

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