Uses of Class
io.vertx.rxjava3.ext.stomp.ServerFrame
Packages that use ServerFrame
-
Uses of ServerFrame in io.vertx.rxjava3.ext.stomp
Classes in io.vertx.rxjava3.ext.stomp that implement interfaces with type arguments of type ServerFrameModifier and TypeClassDescriptionclassSTOMP server handler implements the behavior of the STOMP server when a specific event occurs.Fields in io.vertx.rxjava3.ext.stomp with type parameters of type ServerFrameModifier and TypeFieldDescriptionstatic final io.vertx.lang.rx.TypeArg<ServerFrame> ServerFrame.__TYPE_ARGMethods in io.vertx.rxjava3.ext.stomp that return ServerFrameMethods in io.vertx.rxjava3.ext.stomp with parameters of type ServerFrameModifier and TypeMethodDescriptionvoidStompServerHandler.handle(ServerFrame event) Something has happened, so handle it.Method parameters in io.vertx.rxjava3.ext.stomp with type arguments of type ServerFrameModifier 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.beginHandler(Handler<ServerFrame> handler) Configures the action to execute when aBEGINframe is received.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.StompServerHandler.disconnectHandler(Handler<ServerFrame> handler) Configures the action to execute when aDISCONNECTframe is received.StompServerHandler.nackHandler(Handler<ServerFrame> handler) Configures the action to execute when aNACKframe is received.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.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.StompServer.writingFrameHandler(Handler<ServerFrame> handler) Configures the handler that is invoked every time a frame is going to be written to the "wire".