Interface BaseBridgeEvent

    • Method Detail

      • getRawMessage

        JsonObject getRawMessage()
        Get the raw JSON message for the event. This will be null for SOCKET_CREATED or SOCKET_CLOSED events as there is no message involved. If the returned message is modified, setRawMessage(io.vertx.core.json.JsonObject) should be called with the new message.
        Returns:
        the raw JSON message for the event
      • setRawMessage

        BaseBridgeEvent setRawMessage​(JsonObject message)
        Override the raw JSON message for the event. It is ideally using it when publish back message from server to client in RECEIVE event
        Parameters:
        message - the raw message
        Returns:
        this reference, so it can be used fluently