Arguments interface for the anyMessage signal.

interface IAnyMessageArgs {
    direction: "send" | "recv";
    msg: Readonly<KernelMessage.IMessage<KernelMessage.MessageType>>;
}

Properties

Properties

direction: "send" | "recv"

The direction of the message.

The message that is being signaled.