The MongoDB\Driver\Monitoring\ServerChangedEvent class

はじめに

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.

クラス概要

MongoDB\Driver\Monitoring\ServerChangedEvent
final class MongoDB\Driver\Monitoring\ServerChangedEvent {
/* プロパティ */
public readonly string $host;
public readonly int $port;
public readonly MongoDB\BSON\ObjectId $topologyId;
public readonly MongoDB\Driver\ServerDescription $newDescription;
public readonly MongoDB\Driver\ServerDescription $previousDescription;
/* メソッド */
final public string getHost()
final public MongoDB\Driver\ServerDescription getNewDescription()
final public int getPort()
final public MongoDB\Driver\ServerDescription getPreviousDescription()
final public MongoDB\BSON\ObjectId getTopologyId()
}

プロパティ

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.

変更履歴

バージョン 説明
PECL mongodb 2.3.0 Added public readonly properties.
目次