Angular Solace Message Client - v20.0.0
    Preparing search index...

    Interface MessageEnvelope

    Envelope containing the Message and resolved values for named topic segments, if any.

    interface MessageEnvelope {
        headers: Map<string, any>;
        message: Message;
        params: Params;
    }
    Index

    Properties

    headers: Map<string, any>

    Convenience API for accessing headers attached to the message.

    Message.getUserPropertyMap

    message: Message

    Unmodified message as received by the Solace message broker.

    params: Params

    Contains the resolved values of named single-level wildcard segments as specified in the topic. For example: If subscribed to the topic person/:id and a message is published to the topic person/5, the resolved id with the value 5 is contained in the segments map.