edgeport - v1.0.6
    Preparing search index...

    Interface PubSubEvent

    A pubsub/PEP event delivered to XmppSession.pubsub.

    interface PubSubEvent {
        element: XmlElement;
        from: string;
        itemId?: string;
        node: string;
        payload?: XmlElement;
    }
    Index
    element: XmlElement

    The raw <message> stanza that carried the event.

    from: string

    The publishing entity's JID (from).

    itemId?: string

    The published item's id, when present.

    node: string

    The node the item was published to.

    payload?: XmlElement

    The item's payload element, when present.