/*
 * Copyright 2014 Red Hat, Inc.
 *
 * Red Hat licenses this file to you under the Apache License, version 2.0
 * (the "License"); you may not use this file except in compliance with the
 * License.  You may obtain a copy of the License at:
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 * License for the specific language governing permissions and limitations
 * under the License.
 */

package io.vertx.rxjava.ext.stomp;

import java.util.Map;
import rx.Observable;
import rx.Single;
import io.vertx.ext.stomp.BridgeOptions;
import java.util.List;
import io.vertx.ext.stomp.Frame;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;

STOMP server handler implements the behavior of the STOMP server when a specific event occurs. For instance, if let customize the behavior when specific STOMP frames arrives or when a connection is closed. This class has been designed to let you customize the server behavior. The default implementation is compliant with the STOMP specification. In this default implementation, not acknowledge frames are dropped.

NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.
/** * STOMP server handler implements the behavior of the STOMP server when a specific event occurs. For instance, if * let customize the behavior when specific STOMP frames arrives or when a connection is closed. This class has been * designed to let you customize the server behavior. The default implementation is compliant with the STOMP * specification. In this default implementation, not acknowledge frames are dropped. * * <p/> * NOTE: This class has been automatically generated from the {@link io.vertx.ext.stomp.StompServerHandler original} non RX-ified interface using Vert.x codegen. */
@io.vertx.lang.rx.RxGen(io.vertx.ext.stomp.StompServerHandler.class) public class StompServerHandler implements io.vertx.core.Handler<io.vertx.rxjava.ext.stomp.ServerFrame> { @Override public String toString() { return delegate.toString(); } @Override public boolean equals(Object o) { if (this == o) return true; if (o == null || getClass() != o.getClass()) return false; StompServerHandler that = (StompServerHandler) o; return delegate.equals(that.delegate); } @Override public int hashCode() { return delegate.hashCode(); } public static final io.vertx.lang.rx.TypeArg<StompServerHandler> __TYPE_ARG = new io.vertx.lang.rx.TypeArg<>( obj -> new StompServerHandler((io.vertx.ext.stomp.StompServerHandler) obj), StompServerHandler::getDelegate ); private final io.vertx.ext.stomp.StompServerHandler delegate; public StompServerHandler(io.vertx.ext.stomp.StompServerHandler delegate) { this.delegate = delegate; } public io.vertx.ext.stomp.StompServerHandler getDelegate() { return delegate; }
Something has happened, so handle it.
Params:
  • event – the event to handle
/** * Something has happened, so handle it. * @param event the event to handle */
public void handle(io.vertx.rxjava.ext.stomp.ServerFrame event) { delegate.handle(event.getDelegate()); }
Creates an instance of StompServerHandler using the default (compliant) implementation.
Params:
  • vertx – the vert.x instance to use
Returns:the created StompServerHandler
/** * Creates an instance of {@link io.vertx.rxjava.ext.stomp.StompServerHandler} using the default (compliant) implementation. * @param vertx the vert.x instance to use * @return the created {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public static io.vertx.rxjava.ext.stomp.StompServerHandler create(io.vertx.rxjava.core.Vertx vertx) { io.vertx.rxjava.ext.stomp.StompServerHandler ret = io.vertx.rxjava.ext.stomp.StompServerHandler.newInstance(io.vertx.ext.stomp.StompServerHandler.create(vertx.getDelegate())); return ret; }
Configures a handler that get notified when a STOMP frame is received by the server. This handler can be used for logging, debugging or ad-hoc behavior.
Params:
  • handler – the handler
Returns:the current StompServerHandler
/** * Configures a handler that get notified when a STOMP frame is received by the server. * This handler can be used for logging, debugging or ad-hoc behavior. * @param handler the handler * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler receivedFrameHandler(Handler<io.vertx.rxjava.ext.stomp.ServerFrame> handler) { delegate.receivedFrameHandler(new Handler<io.vertx.ext.stomp.ServerFrame>() { public void handle(io.vertx.ext.stomp.ServerFrame event) { handler.handle(io.vertx.rxjava.ext.stomp.ServerFrame.newInstance(event)); } }); return this; }
Configures the action to execute when a CONNECT frame is received.
Params:
  • handler – the handler
Returns:the current StompServerHandler
/** * Configures the action to execute when a <code>CONNECT</code> frame is received. * @param handler the handler * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler connectHandler(Handler<io.vertx.rxjava.ext.stomp.ServerFrame> handler) { delegate.connectHandler(new Handler<io.vertx.ext.stomp.ServerFrame>() { public void handle(io.vertx.ext.stomp.ServerFrame event) { handler.handle(io.vertx.rxjava.ext.stomp.ServerFrame.newInstance(event)); } }); return this; }
Configures the action to execute when a STOMP frame is received.
Params:
  • handler – the handler
Returns:the current StompServerHandler
/** * Configures the action to execute when a <code>STOMP</code> frame is received. * @param handler the handler * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler stompHandler(Handler<io.vertx.rxjava.ext.stomp.ServerFrame> handler) { delegate.stompHandler(new Handler<io.vertx.ext.stomp.ServerFrame>() { public void handle(io.vertx.ext.stomp.ServerFrame event) { handler.handle(io.vertx.rxjava.ext.stomp.ServerFrame.newInstance(event)); } }); return this; }
Configures the action to execute when a SUBSCRIBE frame is received.
Params:
  • handler – the handler
Returns:the current StompServerHandler
/** * Configures the action to execute when a <code>SUBSCRIBE</code> frame is received. * @param handler the handler * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler subscribeHandler(Handler<io.vertx.rxjava.ext.stomp.ServerFrame> handler) { delegate.subscribeHandler(new Handler<io.vertx.ext.stomp.ServerFrame>() { public void handle(io.vertx.ext.stomp.ServerFrame event) { handler.handle(io.vertx.rxjava.ext.stomp.ServerFrame.newInstance(event)); } }); return this; }
Configures the action to execute when a UNSUBSCRIBE frame is received.
Params:
  • handler – the handler
Returns:the current StompServerHandler
/** * Configures the action to execute when a <code>UNSUBSCRIBE</code> frame is received. * @param handler the handler * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler unsubscribeHandler(Handler<io.vertx.rxjava.ext.stomp.ServerFrame> handler) { delegate.unsubscribeHandler(new Handler<io.vertx.ext.stomp.ServerFrame>() { public void handle(io.vertx.ext.stomp.ServerFrame event) { handler.handle(io.vertx.rxjava.ext.stomp.ServerFrame.newInstance(event)); } }); return this; }
Configures the action to execute when a SEND frame is received.
Params:
  • handler – the handler
Returns:the current StompServerHandler
/** * Configures the action to execute when a <code>SEND</code> frame is received. * @param handler the handler * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler sendHandler(Handler<io.vertx.rxjava.ext.stomp.ServerFrame> handler) { delegate.sendHandler(new Handler<io.vertx.ext.stomp.ServerFrame>() { public void handle(io.vertx.ext.stomp.ServerFrame event) { handler.handle(io.vertx.rxjava.ext.stomp.ServerFrame.newInstance(event)); } }); return this; }
Configures the action to execute when a connection with the client is closed.
Params:
  • handler – the handler
Returns:the current StompServerHandler
/** * Configures the action to execute when a connection with the client is closed. * @param handler the handler * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler closeHandler(Handler<io.vertx.rxjava.ext.stomp.StompServerConnection> handler) { delegate.closeHandler(new Handler<io.vertx.ext.stomp.StompServerConnection>() { public void handle(io.vertx.ext.stomp.StompServerConnection event) { handler.handle(io.vertx.rxjava.ext.stomp.StompServerConnection.newInstance(event)); } }); return this; }
Called when the connection is closed. This method executes a default behavior and must calls the configured closeHandler if any.
Params:
  • connection – the connection
/** * Called when the connection is closed. This method executes a default behavior and must calls the configured * {@link io.vertx.rxjava.ext.stomp.StompServerHandler#closeHandler} if any. * @param connection the connection */
public void onClose(io.vertx.rxjava.ext.stomp.StompServerConnection connection) { delegate.onClose(connection.getDelegate()); }
Configures the action to execute when a COMMIT frame is received.
Params:
  • handler – the handler
Returns:the current StompServerHandler
/** * Configures the action to execute when a <code>COMMIT</code> frame is received. * @param handler the handler * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler commitHandler(Handler<io.vertx.rxjava.ext.stomp.ServerFrame> handler) { delegate.commitHandler(new Handler<io.vertx.ext.stomp.ServerFrame>() { public void handle(io.vertx.ext.stomp.ServerFrame event) { handler.handle(io.vertx.rxjava.ext.stomp.ServerFrame.newInstance(event)); } }); return this; }
Configures the action to execute when a ABORT frame is received.
Params:
  • handler – the handler
Returns:the current StompServerHandler
/** * Configures the action to execute when a <code>ABORT</code> frame is received. * @param handler the handler * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler abortHandler(Handler<io.vertx.rxjava.ext.stomp.ServerFrame> handler) { delegate.abortHandler(new Handler<io.vertx.ext.stomp.ServerFrame>() { public void handle(io.vertx.ext.stomp.ServerFrame event) { handler.handle(io.vertx.rxjava.ext.stomp.ServerFrame.newInstance(event)); } }); return this; }
Configures the action to execute when a BEGIN frame is received.
Params:
  • handler – the handler
Returns:the current StompServerHandler
/** * Configures the action to execute when a <code>BEGIN</code> frame is received. * @param handler the handler * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler beginHandler(Handler<io.vertx.rxjava.ext.stomp.ServerFrame> handler) { delegate.beginHandler(new Handler<io.vertx.ext.stomp.ServerFrame>() { public void handle(io.vertx.ext.stomp.ServerFrame event) { handler.handle(io.vertx.rxjava.ext.stomp.ServerFrame.newInstance(event)); } }); return this; }
Configures the action to execute when a DISCONNECT frame is received.
Params:
  • handler – the handler
Returns:the current StompServerHandler
/** * Configures the action to execute when a <code>DISCONNECT</code> frame is received. * @param handler the handler * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler disconnectHandler(Handler<io.vertx.rxjava.ext.stomp.ServerFrame> handler) { delegate.disconnectHandler(new Handler<io.vertx.ext.stomp.ServerFrame>() { public void handle(io.vertx.ext.stomp.ServerFrame event) { handler.handle(io.vertx.rxjava.ext.stomp.ServerFrame.newInstance(event)); } }); return this; }
Configures the action to execute when a ACK frame is received.
Params:
  • handler – the handler
Returns:the current StompServerHandler
/** * Configures the action to execute when a <code>ACK</code> frame is received. * @param handler the handler * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler ackHandler(Handler<io.vertx.rxjava.ext.stomp.ServerFrame> handler) { delegate.ackHandler(new Handler<io.vertx.ext.stomp.ServerFrame>() { public void handle(io.vertx.ext.stomp.ServerFrame event) { handler.handle(io.vertx.rxjava.ext.stomp.ServerFrame.newInstance(event)); } }); return this; }
Configures the action to execute when a NACK frame is received.
Params:
  • handler – the handler
Returns:the current StompServerHandler
/** * Configures the action to execute when a <code>NACK</code> frame is received. * @param handler the handler * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler nackHandler(Handler<io.vertx.rxjava.ext.stomp.ServerFrame> handler) { delegate.nackHandler(new Handler<io.vertx.ext.stomp.ServerFrame>() { public void handle(io.vertx.ext.stomp.ServerFrame event) { handler.handle(io.vertx.rxjava.ext.stomp.ServerFrame.newInstance(event)); } }); return this; }
Called when the client connects to a server requiring authentication. It invokes the configured using authProvider.
Params:
  • connection – server connection that contains session ID
  • login – the login
  • passcode – the password
  • handler – handler receiving the authentication result
Returns:the current StompServerHandler
/** * Called when the client connects to a server requiring authentication. It invokes the configured * using {@link io.vertx.rxjava.ext.stomp.StompServerHandler#authProvider}. * @param connection server connection that contains session ID * @param login the login * @param passcode the password * @param handler handler receiving the authentication result * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler onAuthenticationRequest(io.vertx.rxjava.ext.stomp.StompServerConnection connection, String login, String passcode, Handler<AsyncResult<Boolean>> handler) { delegate.onAuthenticationRequest(connection.getDelegate(), login, passcode, handler); return this; }
Called when the client connects to a server requiring authentication. It invokes the configured using authProvider.
Params:
  • connection – server connection that contains session ID
  • login – the login
  • passcode – the password
Returns:the current StompServerHandler
Deprecated:use rxOnAuthenticationRequest instead
/** * Called when the client connects to a server requiring authentication. It invokes the configured * using {@link io.vertx.rxjava.ext.stomp.StompServerHandler#authProvider}. * @param connection server connection that contains session ID * @param login the login * @param passcode the password * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} * @deprecated use {@link #rxOnAuthenticationRequest} instead */
@Deprecated() public Observable<Boolean> onAuthenticationRequestObservable(io.vertx.rxjava.ext.stomp.StompServerConnection connection, String login, String passcode) { io.vertx.rx.java.ObservableFuture<Boolean> handler = io.vertx.rx.java.RxHelper.observableFuture(); onAuthenticationRequest(connection, login, passcode, handler.toHandler()); return handler; }
Called when the client connects to a server requiring authentication. It invokes the configured using authProvider.
Params:
  • connection – server connection that contains session ID
  • login – the login
  • passcode – the password
Returns:the current StompServerHandler
/** * Called when the client connects to a server requiring authentication. It invokes the configured * using {@link io.vertx.rxjava.ext.stomp.StompServerHandler#authProvider}. * @param connection server connection that contains session ID * @param login the login * @param passcode the password * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public Single<Boolean> rxOnAuthenticationRequest(io.vertx.rxjava.ext.stomp.StompServerConnection connection, String login, String passcode) { return Single.create(new io.vertx.rx.java.SingleOnSubscribeAdapter<>(fut -> { onAuthenticationRequest(connection, login, passcode, fut); })); }
Provides for authorization matches on a destination level, this will return the User created by the .
Params:
  • session – session ID for the server connection.
Returns:null if not authenticated.
/** * Provides for authorization matches on a destination level, this will return the User created by the . * @param session session ID for the server connection. * @return null if not authenticated. */
public io.vertx.rxjava.ext.auth.User getUserBySession(String session) { io.vertx.rxjava.ext.auth.User ret = io.vertx.rxjava.ext.auth.User.newInstance(delegate.getUserBySession(session)); return ret; }
Configures the to be used to authenticate the user.
Params:
  • handler – the handler
Returns:the current StompServerHandler
/** * Configures the to be used to authenticate the user. * @param handler the handler * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler authProvider(io.vertx.rxjava.ext.auth.AuthProvider handler) { delegate.authProvider(handler.getDelegate()); return this; }
Returns:the list of destination managed by the STOMP server. Don't forget the STOMP interprets destination as opaque Strings.
/** * @return the list of destination managed by the STOMP server. Don't forget the STOMP interprets destination as opaque Strings. */
public List<io.vertx.rxjava.ext.stomp.Destination> getDestinations() { List<io.vertx.rxjava.ext.stomp.Destination> ret = delegate.getDestinations().stream().map(elt -> io.vertx.rxjava.ext.stomp.Destination.newInstance(elt)).collect(java.util.stream.Collectors.toList()); return ret; }
Gets the destination with the given name.
Params:
  • destination – the destination
Returns:the Destination, null if not existing.
/** * Gets the destination with the given name. * @param destination the destination * @return the {@link io.vertx.rxjava.ext.stomp.Destination}, <code>null</code> if not existing. */
public io.vertx.rxjava.ext.stomp.Destination getDestination(String destination) { io.vertx.rxjava.ext.stomp.Destination ret = io.vertx.rxjava.ext.stomp.Destination.newInstance(delegate.getDestination(destination)); return ret; }
Method called by single message (client-individual policy) or a set of message (client policy) are acknowledged. Implementations must call the handler configured using onAckHandler.
Params:
  • connection – the connection
  • subscribe – the SUBSCRIBE frame
  • messages – the acknowledge messages
Returns:the current StompServerHandler
/** * Method called by single message (client-individual policy) or a set of message (client policy) are acknowledged. * Implementations must call the handler configured using {@link io.vertx.rxjava.ext.stomp.StompServerHandler#onAckHandler}. * @param connection the connection * @param subscribe the <code>SUBSCRIBE</code> frame * @param messages the acknowledge messages * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler onAck(io.vertx.rxjava.ext.stomp.StompServerConnection connection, Frame subscribe, List<Frame> messages) { delegate.onAck(connection.getDelegate(), subscribe, messages); return this; }
Method called by single message (client-individual policy) or a set of message (client policy) are not acknowledged. Not acknowledgment can result from a NACK frame or from a timeout (no ACK frame received in a given time. Implementations must call the handler configured using onNackHandler.
Params:
  • connection – the connection
  • subscribe – the SUBSCRIBE frame
  • messages – the acknowledge messages
Returns:the current StompServerHandler
/** * Method called by single message (client-individual policy) or a set of message (client policy) are * <strong>not</strong> acknowledged. Not acknowledgment can result from a <code>NACK</code> frame or from a timeout (no * <code>ACK</code> frame received in a given time. Implementations must call the handler configured using * {@link io.vertx.rxjava.ext.stomp.StompServerHandler#onNackHandler}. * @param connection the connection * @param subscribe the <code>SUBSCRIBE</code> frame * @param messages the acknowledge messages * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler onNack(io.vertx.rxjava.ext.stomp.StompServerConnection connection, Frame subscribe, List<Frame> messages) { delegate.onNack(connection.getDelegate(), subscribe, messages); return this; }
Configures the action to execute when messages are acknowledged.
Params:
  • handler – the handler
Returns:the current StompServerHandler
/** * Configures the action to execute when messages are acknowledged. * @param handler the handler * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler onAckHandler(Handler<io.vertx.rxjava.ext.stomp.Acknowledgement> handler) { delegate.onAckHandler(new Handler<io.vertx.ext.stomp.Acknowledgement>() { public void handle(io.vertx.ext.stomp.Acknowledgement event) { handler.handle(io.vertx.rxjava.ext.stomp.Acknowledgement.newInstance(event)); } }); return this; }
Configures the action to execute when messages are not acknowledged.
Params:
  • handler – the handler
Returns:the current StompServerHandler
/** * Configures the action to execute when messages are <strong>not</strong> acknowledged. * @param handler the handler * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler onNackHandler(Handler<io.vertx.rxjava.ext.stomp.Acknowledgement> handler) { delegate.onNackHandler(new Handler<io.vertx.ext.stomp.Acknowledgement>() { public void handle(io.vertx.ext.stomp.Acknowledgement event) { handler.handle(io.vertx.rxjava.ext.stomp.Acknowledgement.newInstance(event)); } }); return this; }
Allows customizing the action to do when the server needs to send a `PING` to the client. By default it send a frame containing EOL (specification). However, you can customize this and send another frame. However, be aware that this may requires a custom client.

The handler will only be called if the connection supports heartbeats.
Params:
  • handler – the action to execute when a `PING` needs to be sent.
Returns:the current StompServerHandler
/** * Allows customizing the action to do when the server needs to send a `PING` to the client. By default it send a * frame containing <code>EOL</code> (specification). However, you can customize this and send another frame. However, * be aware that this may requires a custom client. * <p/> * The handler will only be called if the connection supports heartbeats. * @param handler the action to execute when a `PING` needs to be sent. * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler} */
public io.vertx.rxjava.ext.stomp.StompServerHandler pingHandler(Handler<io.vertx.rxjava.ext.stomp.StompServerConnection> handler) { delegate.pingHandler(new Handler<io.vertx.ext.stomp.StompServerConnection>() { public void handle(io.vertx.ext.stomp.StompServerConnection event) { handler.handle(io.vertx.rxjava.ext.stomp.StompServerConnection.newInstance(event)); } }); return this; }
Gets a Destination object if existing, or create a new one. The creation is delegated to the DestinationFactory.
Params:
  • destination – the destination
Returns:the Destination instance, may have been created.
/** * Gets a {@link io.vertx.rxjava.ext.stomp.Destination} object if existing, or create a new one. The creation is delegated to the * {@link io.vertx.rxjava.ext.stomp.DestinationFactory}. * @param destination the destination * @return the {@link io.vertx.rxjava.ext.stomp.Destination} instance, may have been created. */
public io.vertx.rxjava.ext.stomp.Destination getOrCreateDestination(String destination) { io.vertx.rxjava.ext.stomp.Destination ret = io.vertx.rxjava.ext.stomp.Destination.newInstance(delegate.getOrCreateDestination(destination)); return ret; }
Configures the DestinationFactory used to create Destination objects.
Params:
  • factory – the factory
Returns:the current StompServerHandler.
/** * Configures the {@link io.vertx.rxjava.ext.stomp.DestinationFactory} used to create {@link io.vertx.rxjava.ext.stomp.Destination} objects. * @param factory the factory * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler}. */
public io.vertx.rxjava.ext.stomp.StompServerHandler destinationFactory(io.vertx.rxjava.ext.stomp.DestinationFactory factory) { delegate.destinationFactory(factory.getDelegate()); return this; }
Configures the STOMP server to act as a bridge with the Vert.x event bus.
Params:
  • options – the configuration options
Returns:the current StompServerHandler.
/** * Configures the STOMP server to act as a bridge with the Vert.x event bus. * @param options the configuration options * @return the current {@link io.vertx.rxjava.ext.stomp.StompServerHandler}. */
public io.vertx.rxjava.ext.stomp.StompServerHandler bridge(BridgeOptions options) { delegate.bridge(options); return this; } public static StompServerHandler newInstance(io.vertx.ext.stomp.StompServerHandler arg) { return arg != null ? new StompServerHandler(arg) : null; } }