Uses of Interface
io.vertx.ext.stomp.ServerFrame
-
Packages that use ServerFrame Package Description io.vertx.ext.stomp io.vertx.reactivex.ext.stomp io.vertx.rxjava3.ext.stomp -
-
Uses of ServerFrame in io.vertx.ext.stomp
Methods in io.vertx.ext.stomp with parameters of type ServerFrame Modifier and Type Method Description void
DefaultAbortHandler. handle(ServerFrame sf)
void
DefaultAckHandler. handle(ServerFrame serverFrame)
void
DefaultBeginHandler. handle(ServerFrame serverFrame)
void
DefaultCommitHandler. handle(ServerFrame serverFrame)
void
DefaultConnectHandler. handle(ServerFrame sf)
void
DefaultNackHandler. handle(ServerFrame sf)
void
DefaultSendHandler. handle(ServerFrame sf)
void
DefaultSubscribeHandler. handle(ServerFrame serverFrame)
void
DefaultUnsubscribeHandler. handle(ServerFrame serverFrame)
Method parameters in io.vertx.ext.stomp with type arguments of type ServerFrame Modifier and Type Method Description StompServerHandler
StompServerHandler. abortHandler(Handler<ServerFrame> handler)
Configures the action to execute when aABORT
frame is received.StompServerHandler
StompServerHandler. ackHandler(Handler<ServerFrame> handler)
Configures the action to execute when aACK
frame is received.StompServerHandler
StompServerHandler. beginHandler(Handler<ServerFrame> handler)
Configures the action to execute when aBEGIN
frame is received.StompServerHandler
StompServerHandler. commitHandler(Handler<ServerFrame> handler)
Configures the action to execute when aCOMMIT
frame is received.StompServerHandler
StompServerHandler. connectHandler(Handler<ServerFrame> handler)
Configures the action to execute when aCONNECT
frame is received.StompServerHandler
StompServerHandler. disconnectHandler(Handler<ServerFrame> handler)
Configures the action to execute when aDISCONNECT
frame is received.StompServerHandler
StompServerHandler. nackHandler(Handler<ServerFrame> handler)
Configures the action to execute when aNACK
frame is received.StompServerHandler
StompServerHandler. receivedFrameHandler(Handler<ServerFrame> handler)
Configures a handler that get notified when a STOMP frame is received by the server.StompServerHandler
StompServerHandler. sendHandler(Handler<ServerFrame> handler)
Configures the action to execute when aSEND
frame is received.StompServerHandler
StompServerHandler. stompHandler(Handler<ServerFrame> handler)
Configures the action to execute when aSTOMP
frame is received.StompServerHandler
StompServerHandler. subscribeHandler(Handler<ServerFrame> handler)
Configures the action to execute when aSUBSCRIBE
frame is received.StompServerHandler
StompServerHandler. unsubscribeHandler(Handler<ServerFrame> handler)
Configures the action to execute when aUNSUBSCRIBE
frame is received.StompServer
StompServer. writingFrameHandler(Handler<ServerFrame> handler)
Configures the handler that is invoked every time a frame is going to be written to the "wire". -
Uses of ServerFrame in io.vertx.reactivex.ext.stomp
Methods in io.vertx.reactivex.ext.stomp that return ServerFrame Modifier and Type Method Description ServerFrame
ServerFrame. getDelegate()
Methods in io.vertx.reactivex.ext.stomp with parameters of type ServerFrame Modifier and Type Method Description static ServerFrame
ServerFrame. newInstance(ServerFrame arg)
Constructors in io.vertx.reactivex.ext.stomp with parameters of type ServerFrame Constructor Description ServerFrame(ServerFrame delegate)
-
Uses of ServerFrame in io.vertx.rxjava3.ext.stomp
Methods in io.vertx.rxjava3.ext.stomp that return ServerFrame Modifier and Type Method Description ServerFrame
ServerFrame. getDelegate()
Methods in io.vertx.rxjava3.ext.stomp with parameters of type ServerFrame Modifier and Type Method Description static ServerFrame
ServerFrame. newInstance(ServerFrame arg)
Constructors in io.vertx.rxjava3.ext.stomp with parameters of type ServerFrame Constructor Description ServerFrame(ServerFrame delegate)
-