Uses of Interface
io.vertx.ext.stomp.StompServerConnection
-
Packages that use StompServerConnection Package Description io.vertx.ext.stomp io.vertx.reactivex.ext.stomp io.vertx.rxjava3.ext.stomp -
-
Uses of StompServerConnection in io.vertx.ext.stomp
Methods in io.vertx.ext.stomp that return StompServerConnection Modifier and Type Method Description StompServerConnection
ServerFrame. connection()
StompServerConnection
StompServerConnection. write(Buffer buffer)
Writes the given buffer to the socket.StompServerConnection
StompServerConnection. write(Frame frame)
Writes the given frame to the socket.Methods in io.vertx.ext.stomp with parameters of type StompServerConnection Modifier and Type Method Description boolean
Destination. ack(StompServerConnection connection, Frame frame)
Handles aACK
frame.Destination
Destination. dispatch(StompServerConnection connection, Frame frame)
Dispatches the given frame.List<String>
Destination. getSubscriptions(StompServerConnection connection)
Gets all subscription ids for the given destination hold by the given clientstatic void
Frames. handleReceipt(Frame frame, StompServerConnection connection)
boolean
Destination. nack(StompServerConnection connection, Frame frame)
Handles aNACK
frame.StompServerHandler
StompServerHandler. onAck(StompServerConnection connection, Frame subscribe, List<Frame> messages)
Method called by single message (client-individual policy) or a set of message (client policy) are acknowledged.Future<Boolean>
StompServerHandler. onAuthenticationRequest(StompServerConnection connection, String login, String passcode)
Called when the client connects to a server requiring authentication.void
StompServerHandler. onClose(StompServerConnection connection)
Called when the connection is closed.StompServerHandler
StompServerHandler. onNack(StompServerConnection connection, Frame subscribe, List<Frame> messages)
Method called by single message (client-individual policy) or a set of message (client policy) are not acknowledged.Destination
Destination. subscribe(StompServerConnection connection, Frame frame)
Handles a subscription request to the currentDestination
.boolean
Destination. unsubscribe(StompServerConnection connection, Frame frame)
Handles a un-subscription request to the currentDestination
.Destination
Destination. unsubscribeConnection(StompServerConnection connection)
Removes all subscriptions of the given connectionMethod parameters in io.vertx.ext.stomp with type arguments of type StompServerConnection Modifier and Type Method Description StompServerHandler
StompServerHandler. closeHandler(Handler<StompServerConnection> handler)
Configures the action to execute when a connection with the client is closed.void
StompServerConnection. configureHeartbeat(long ping, long pong, Handler<StompServerConnection> pingHandler)
Configures the heartbeat.StompServerHandler
StompServerHandler. pingHandler(Handler<StompServerConnection> handler)
Allows customizing the action to do when the server needs to send a `PING` to the client. -
Uses of StompServerConnection in io.vertx.reactivex.ext.stomp
Methods in io.vertx.reactivex.ext.stomp that return StompServerConnection Modifier and Type Method Description StompServerConnection
StompServerConnection. getDelegate()
Methods in io.vertx.reactivex.ext.stomp with parameters of type StompServerConnection Modifier and Type Method Description static StompServerConnection
StompServerConnection. newInstance(StompServerConnection arg)
Constructors in io.vertx.reactivex.ext.stomp with parameters of type StompServerConnection Constructor Description StompServerConnection(StompServerConnection delegate)
-
Uses of StompServerConnection in io.vertx.rxjava3.ext.stomp
Methods in io.vertx.rxjava3.ext.stomp that return StompServerConnection Modifier and Type Method Description StompServerConnection
StompServerConnection. getDelegate()
Methods in io.vertx.rxjava3.ext.stomp with parameters of type StompServerConnection Modifier and Type Method Description static StompServerConnection
StompServerConnection. newInstance(StompServerConnection arg)
Constructors in io.vertx.rxjava3.ext.stomp with parameters of type StompServerConnection Constructor Description StompServerConnection(StompServerConnection delegate)
-