A 'comm_info_reply' message content.

See Messaging in Jupyter.

See also: [[ICommInfoRequest]], [[IKernel.commInfo]]

interface ICommInfoReply {
    comms: {
        [commId: string]: {
            target_name: string;
        };
    };
    status: "ok";
}

Hierarchy (view full)

Properties

Properties

comms: {
    [commId: string]: {
        target_name: string;
    };
}

Mapping of comm ids to target names.

Type declaration

  • [commId: string]: {
        target_name: string;
    }
    • target_name: string
status: "ok"