Uses of Interface
io.vertx.ext.stomp.StompClientConnection
-
Packages that use StompClientConnection Package Description io.vertx.ext.stomp io.vertx.reactivex.ext.stomp io.vertx.rxjava3.ext.stomp -
-
Uses of StompClientConnection in io.vertx.ext.stomp
Methods in io.vertx.ext.stomp that return StompClientConnection Modifier and Type Method Description StompClientConnection
StompClientConnection. closeHandler(Handler<StompClientConnection> handler)
Sets a handler notified when the STOMP connection is closed.StompClientConnection
StompClientConnection. connectionDroppedHandler(Handler<StompClientConnection> handler)
Sets a handler notified when the server does not respond to aping
request in time.StompClientConnection
StompClientConnection. errorHandler(Handler<Frame> handler)
Sets a handler notified when anERROR
frame is received by the client.StompClientConnection
StompClientConnection. exceptionHandler(Handler<Throwable> exceptionHandler)
Configures the exception handler notified upon TCP-level errors.StompClientConnection
StompClientConnection. pingHandler(Handler<StompClientConnection> handler)
Sets a handler that let customize the behavior when a ping needs to be sent to the server.StompClientConnection
StompClientConnection. receivedFrameHandler(Handler<Frame> handler)
Configures a received handler that get notified when a STOMP frame is received by the client.StompClientConnection
StompClientConnection. writingFrameHandler(Handler<Frame> handler)
Configures a handler notified when a frame is going to be written on the wire.Methods in io.vertx.ext.stomp that return types with arguments of type StompClientConnection Modifier and Type Method Description Future<StompClientConnection>
StompClient. connect()
Connects to the server using the host and port configured in the client's options.Future<StompClientConnection>
StompClient. connect(int port, String host)
Connects to the server.Method parameters in io.vertx.ext.stomp with type arguments of type StompClientConnection Modifier and Type Method Description StompClientConnection
StompClientConnection. closeHandler(Handler<StompClientConnection> handler)
Sets a handler notified when the STOMP connection is closed.StompClientConnection
StompClientConnection. connectionDroppedHandler(Handler<StompClientConnection> handler)
Sets a handler notified when the server does not respond to aping
request in time.StompClientConnection
StompClientConnection. pingHandler(Handler<StompClientConnection> handler)
Sets a handler that let customize the behavior when a ping needs to be sent to the server. -
Uses of StompClientConnection in io.vertx.reactivex.ext.stomp
Methods in io.vertx.reactivex.ext.stomp that return StompClientConnection Modifier and Type Method Description StompClientConnection
StompClientConnection. getDelegate()
Methods in io.vertx.reactivex.ext.stomp with parameters of type StompClientConnection Modifier and Type Method Description static StompClientConnection
StompClientConnection. newInstance(StompClientConnection arg)
Constructors in io.vertx.reactivex.ext.stomp with parameters of type StompClientConnection Constructor Description StompClientConnection(StompClientConnection delegate)
-
Uses of StompClientConnection in io.vertx.rxjava3.ext.stomp
Methods in io.vertx.rxjava3.ext.stomp that return StompClientConnection Modifier and Type Method Description StompClientConnection
StompClientConnection. getDelegate()
Methods in io.vertx.rxjava3.ext.stomp with parameters of type StompClientConnection Modifier and Type Method Description static StompClientConnection
StompClientConnection. newInstance(StompClientConnection arg)
Constructors in io.vertx.rxjava3.ext.stomp with parameters of type StompClientConnection Constructor Description StompClientConnection(StompClientConnection delegate)
-