Class DefaultCommitHandler
java.lang.Object
io.vertx.ext.stomp.DefaultCommitHandler
- All Implemented Interfaces:
Handler<ServerFrame>
STOMP compliant actions executed when receiving a
COMMIT frame. All frames that are part of the
transactions are processed (ACK/NACK and SEND frames). If the COMMIT frame defines a
receipt, the RECEIPT frame is sent once all frames have been replayed.
This handler is thread safe.- Author:
- Clement Escoffier
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidhandle(ServerFrame serverFrame) Something has happened, so handle it.
-
Constructor Details
-
DefaultCommitHandler
public DefaultCommitHandler()
-
-
Method Details
-
handle
Description copied from interface:HandlerSomething has happened, so handle it.- Specified by:
handlein interfaceHandler<ServerFrame>- Parameters:
serverFrame- the event to handle
-