Class BridgeEvent


  • public class BridgeEvent
    extends BaseBridgeEvent
    Represents an event that occurs on the event bus bridge.

    Please consult the documentation for a full explanation.

    NOTE: This class has been automatically generated from the original non Mutiny-ified interface using Vert.x codegen.

    • Constructor Detail

      • BridgeEvent

        public BridgeEvent​(io.vertx.ext.web.handler.sockjs.BridgeEvent delegate)
      • BridgeEvent

        public BridgeEvent​(Object delegate)
    • Method Detail

      • getDelegate

        public io.vertx.ext.web.handler.sockjs.BridgeEvent getDelegate()
        Overrides:
        getDelegate in class BaseBridgeEvent
      • tryComplete

        public boolean tryComplete​(Boolean arg0)
        Overrides:
        tryComplete in class BaseBridgeEvent
        Parameters:
        arg0 - the result
        Returns:
        false when the future is already completed
      • future

        @CheckReturnValue
        public io.smallrye.mutiny.Uni<Boolean> future()
        Description copied from class: Promise

        Unlike the bare Vert.x variant, this method returns a Uni. Don't forget to subscribe on it to trigger the operation.

        Overrides:
        future in class BaseBridgeEvent
        Returns:
        the uni firing the result of the operation when completed, or a failure if the operation failed.
      • futureAndAwait

        public Boolean futureAndAwait()
        Description copied from class: Promise
        Blocking variant of Promise.future().

        This method waits for the completion of the underlying asynchronous operation. If the operation completes successfully, the result is returned, otherwise the failure is thrown (potentially wrapped in a RuntimeException).

        Overrides:
        futureAndAwait in class BaseBridgeEvent
        Returns:
        the T instance produced by the operation.
      • futureAndForget

        public void futureAndForget()
        Description copied from class: Promise
        Variant of Promise.future() that ignores the result of the operation.

        This method subscribes on the result of Promise.future(), but discards the outcome (item or failure). This method is useful to trigger the asynchronous operation from Promise.future() but you don't need to compose it with other operations.

        Overrides:
        futureAndForget in class BaseBridgeEvent
      • setRawMessage

        public BridgeEvent setRawMessage​(io.vertx.core.json.JsonObject message)
        Overrides:
        setRawMessage in class BaseBridgeEvent
        Parameters:
        message - the raw message
        Returns:
        this reference, so it can be used fluently
      • socket

        public SockJSSocket socket()
        Returns:
        the SockJSSocket instance
      • newInstance

        public static BridgeEvent newInstance​(io.vertx.ext.web.handler.sockjs.BridgeEvent arg)