interface Channel<T> {
    binary: boolean;
    id: null | string;
    options: JsonObject;
    ready: boolean;
    valid: boolean;
    addEventListener<E extends keyof ChannelEvents<T>>(event: E, listener: cockpit.EventListener<ChannelEvents<T>[E]>): void;
    close(options?: JsonObject): void;
    control(options: ControlMessage): void;
    dispatchEvent<E extends keyof ChannelEvents<T>>(event: E, ...args: Parameters<ChannelEvents<T>[E]>): void;
    removeEventListener<E extends keyof ChannelEvents<T>>(event: E, listener: cockpit.EventListener<ChannelEvents<T>[E]>): void;
    send(data: T): void;
    wait(): Promise<void>;
}

Type Parameters

  • T

Hierarchy-Diagram

UML class diagram of Channel
Legend
icon for an interface in the UML class diagram interface
icon for a public property in the UML class diagram public property
icon for a public method in the UML class diagram public method

Hierarchy (view full)

Properties

binary: boolean
id: null | string
options: JsonObject
ready: boolean
valid: boolean

Methods

  • Parameters

    Returns void

  • Parameters

    Returns void

  • Parameters

    • data: T

    Returns void

  • Returns Promise<void>