Interface RealtimeConnection<Input>

A connection object that allows you to send request payloads to a realtime endpoint.

interface RealtimeConnection<Input> {
    close(): void;
    send(input: Input & Partial<WithRequestId>): void;
}

Type Parameters

  • Input

Methods

Methods