The MongoDB\Driver\Monitoring\ServerClosedEvent class

(mongodb >=1.13.0)

Introduction

The MongoDB\Driver\Monitoring\ServerClosedEvent class encapsulates information about a closed server. This corresponds to an existing server being removed from the topology.

Class synopsis

final class MongoDB\Driver\Monitoring\ServerClosedEvent {
/* Properties */
public readonly string $host;
public readonly int $port;
/* Methods */
final public getHost(): string
final public getPort(): int
}

Properties

host
The hostname of the server.
port
The port of the server.
topologyId
The topology ID.

Changelog

Version Description
PECL mongodb 2.3.0 Added public readonly properties.

Table of Contents