LonghornPHP 2026

The MongoDB\Driver\Monitoring\ServerOpeningEvent class

(mongodb >=1.13.0)

Introduction

The MongoDB\Driver\Monitoring\ServerOpeningEvent class encapsulates information about an opened server. This corresponds to a new server being added to the topology.

Class synopsis

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

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

add a note

User Contributed Notes

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