The MongoDB\Driver\Monitoring\ServerChangedEvent class

(mongodb >=1.13.0)

Giriş

The MongoDB\Driver\Monitoring\ServerChangedEvent class encapsulates information about a changed server description. For example, a server's type changing from secondary to primary would cause its server description to change.

Sınıf Sözdizimi

final class MongoDB\Driver\Monitoring\ServerChangedEvent {
/* Özellikler */
public readonly string $host;
public readonly int $port;
/* Yöntemler */
final public function getHost(): string
final public function getPort(): int
final public function getTopologyId(): MongoDB\BSON\ObjectId
}

Özellikler

host

The hostname of the server.

port

The port of the server.

topologyId

The topology ID.

newDescription

The new server description.

previousDescription

The previous server description.

Sürüm Bilgisi

Sürüm: Açıklama
PECL mongodb 2.3.0 Added public readonly properties.

İçindekiler

add a note

User Contributed Notes

There are no user contributed notes for this page.