Binance Connector JS
    Preparing search index...

    Interface WebsocketConnection

    interface WebsocketConnection {
        closeInitiated: boolean;
        id: string;
        isSessionLoggedOn?: boolean;
        pendingRequests: Map<
            string,
            { reject: (reason?: unknown) => void; resolve: (value: any) => void },
        >;
        pendingSubscriptions?: string[];
        reconnectionPending: boolean;
        renewalPending: boolean;
        sessionLogonReq?: {
            method: string;
            options: WebsocketSendMsgConfig;
            payload: WebsocketSendMsgOptions;
        };
        ws?: WebSocket;
    }
    Index

    Properties

    closeInitiated: boolean
    id: string
    isSessionLoggedOn?: boolean
    pendingRequests: Map<
        string,
        { reject: (reason?: unknown) => void; resolve: (value: any) => void },
    >
    pendingSubscriptions?: string[]
    reconnectionPending: boolean
    renewalPending: boolean
    sessionLogonReq?: {
        method: string;
        options: WebsocketSendMsgConfig;
        payload: WebsocketSendMsgOptions;
    }
    ws?: WebSocket