@bootdesk/js-web-adapter-core
    Preparing search index...

    Interface BroadcastClient

    interface BroadcastClient {
        connect(): void | Promise<void>;
        disconnect(): void;
        isConnected(): boolean;
        subscribe(threadId: string, handlers: EventHandlers): Promise<Unsubscribe>;
        subscribeToUser(
            threadId: string,
            userId: string,
            handlers: EventHandlers,
        ): Promise<Unsubscribe>;
    }

    Implemented by

    Index

    Methods