Interface IpcOutgoingMessage

Represents a message to be sent to a client through the IPC channel. Includes options for disconnecting the client after message delivery.

interface IpcOutgoingMessage {
    disconnect?: boolean;
    id: string;
    msg: string;
}

Hierarchy

  • IpcOutgoingMessageType
    • IpcOutgoingMessage

Properties

Properties

disconnect?: boolean

When true, signals that the connection should be terminated after message processing

id: string

Unique identifier for the client connection

msg: string

Payload data encoded as a base64 string