interface default {
    active: boolean;
    id: string;
    outgoing: boolean;
    type: string;
    start(): Promise<void>;
    stop(): Promise<void>;
}

Implemented by

Properties

Methods

Properties

active: boolean
id: string

This is an id that is unique inside a connection group.

outgoing: boolean
type: string

Type is a string that identifies the type of the route.

For example this is 'OutgoingWebsocketRoute' or 'IncomingWebsocketRouteDirect' ...

Methods