Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

DebugEvents

import { DebugEvents } from "https://raw.githubusercontent.com/nats-io/nats.deno/v1.27.0/nats-base-client/internal_mod.ts";

Other events that can be reported by the {@link NatsConnection#status} iterator. These can usually be safely ignored, as higher-order functionality of the client will handle them.

enum DebugEvents {
Reconnecting = "reconnecting",
PingTimer = "pingTimer",
StaleConnection = "staleConnection",
ClientInitiatedReconnect = "client initiated reconnect",
}

§Members

§
DebugEvents.ClientInitiatedReconnect = "client initiated reconnect"
[src]
§
DebugEvents.PingTimer = "pingTimer"
[src]
§
DebugEvents.Reconnecting = "reconnecting"
[src]
§
DebugEvents.StaleConnection = "staleConnection"
[src]