The MongoDB\Driver\Monitoring\ServerHeartbeatStartedEvent class

Introduction

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

Class synopsis

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

Properties

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.

Changelog

Version Description
PECL mongodb 2.3.0 Added public readonly properties.
Table of Contents