Uses of Class
io.vertx.rxjava3.ext.stomp.StompServerHandler
Packages that use StompServerHandler
-
Uses of StompServerHandler in io.vertx.rxjava3.ext.stomp
Fields in io.vertx.rxjava3.ext.stomp with type parameters of type StompServerHandlerModifier and TypeFieldDescriptionstatic final io.vertx.lang.rx.TypeArg<StompServerHandler> StompServerHandler.__TYPE_ARGMethods in io.vertx.rxjava3.ext.stomp that return StompServerHandlerModifier and TypeMethodDescriptionStompServerHandler.abortHandler(Handler<ServerFrame> handler) Configures the action to execute when aABORTframe is received.StompServerHandler.ackHandler(Handler<ServerFrame> handler) Configures the action to execute when aACKframe is received.StompServerHandler.authProvider(AuthenticationProvider handler) Configures the to be used to authenticate the user.StompServerHandler.beginHandler(Handler<ServerFrame> handler) Configures the action to execute when aBEGINframe is received.StompServerHandler.bridge(BridgeOptions options) Configures the STOMP server to act as a bridge with the Vert.x event bus.StompServerHandler.closeHandler(Handler<StompServerConnection> handler) Configures the action to execute when a connection with the client is closed.StompServerHandler.commitHandler(Handler<ServerFrame> handler) Configures the action to execute when aCOMMITframe is received.StompServerHandler.connectHandler(Handler<ServerFrame> handler) Configures the action to execute when aCONNECTframe is received.static StompServerHandlerCreates an instance ofStompServerHandlerusing the default (compliant) implementation.StompServerHandler.destinationFactory(DestinationFactory factory) Configures theDestinationFactoryused to createDestinationobjects.StompServerHandler.disconnectHandler(Handler<ServerFrame> handler) Configures the action to execute when aDISCONNECTframe is received.StompServerConnection.handler()StompServerHandler.nackHandler(Handler<ServerFrame> handler) Configures the action to execute when aNACKframe is received.static StompServerHandlerStompServerHandler.newInstance(StompServerHandler arg) 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.StompServerHandler.onAckHandler(Handler<Acknowledgement> handler) Configures the action to execute when messages are acknowledged.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.StompServerHandler.onNackHandler(Handler<Acknowledgement> handler) Configures the action to execute when messages are not acknowledged.StompServerHandler.pingHandler(Handler<StompServerConnection> handler) Allows customizing the action to do when the server needs to send a `PING` to the client.StompServerHandler.receivedFrameHandler(Handler<ServerFrame> handler) Configures a handler that get notified when a STOMP frame is received by the server.StompServerHandler.sendHandler(Handler<ServerFrame> handler) Configures the action to execute when aSENDframe is received.StompServer.stompHandler()StompServerHandler.stompHandler(Handler<ServerFrame> handler) Configures the action to execute when aSTOMPframe is received.StompServerHandler.subscribeHandler(Handler<ServerFrame> handler) Configures the action to execute when aSUBSCRIBEframe is received.StompServerHandler.unsubscribeHandler(Handler<ServerFrame> handler) Configures the action to execute when aUNSUBSCRIBEframe is received.Methods in io.vertx.rxjava3.ext.stomp with parameters of type StompServerHandlerModifier and TypeMethodDescriptionStompServer.handler(StompServerHandler handler) Configures theStompServerHandler.