Interface ReadyMessage

Represents the initialization message sent when the IPC system is ready. Contains essential connection details for clients to establish communication.

interface ReadyMessage {
    socket: string;
    version: number;
}

Hierarchy

  • Pick<Required<BaseMessage>, "socket" | "version">
    • ReadyMessage

Properties

Properties

socket: string

Path to the IPC socket being used for communication

version: number

Protocol version identifier for compatibility checking