edgeport - v1.0.3
    Preparing search index...

    Interface StompFrame

    A single decoded STOMP frame: a command, its headers, and a raw body.

    The body is left as bytes so binary payloads (including embedded NULs framed by content-length) survive intact. Header keys and values are already unescaped from their on-the-wire form.

    1.0.0

    interface StompFrame {
        body: Uint8Array;
        command: string;
        headers: Record<string, string>;
    }
    Index
    body: Uint8Array

    The raw body bytes (empty when the frame has no body).

    command: string

    The frame command (e.g. 'CONNECT', 'MESSAGE', 'ERROR').

    headers: Record<string, string>

    The decoded headers, first occurrence winning per the STOMP repeat-header rule.