PHP 8.4.0 RC4 available for testing

La classe MongoDB\Driver\TopologyDescription

(mongodb >=1.13.0)

Introduction

La classe MongoDB\Driver\TopologyDescription est un objet de valeur qui représente une topologie à laquelle le pilote est connecté. Les instances de cette classe sont retournées par les méthodes de MongoDB\Driver\Monitoring\TopologyChangedEvent.

Synopsis de la classe

final class MongoDB\Driver\TopologyDescription {
/* Constantes */
const string TYPE_UNKNOWN = "Unknown";
const string TYPE_SINGLE = "Single";
const string TYPE_SHARDED = "Sharded";
const string TYPE_REPLICA_SET_NO_PRIMARY = "ReplicaSetNoPrimary";
const string TYPE_REPLICA_SET_WITH_PRIMARY = "ReplicaSetWithPrimary";
const string TYPE_LOAD_BALANCED = "LoadBalanced";
/* Méthodes */
final public getServers(): array
final public getType(): string
final public hasWritableServer(): bool
}

Sommaire

add a note

User Contributed Notes

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