Package io.vertx.ext.stomp
Class DefaultCommitHandler
- java.lang.Object
-
- io.vertx.ext.stomp.DefaultCommitHandler
-
- All Implemented Interfaces:
Handler<ServerFrame>
public class DefaultCommitHandler extends Object implements Handler<ServerFrame>
STOMP compliant actions executed when receiving aCOMMIT
frame. All frames that are part of the transactions are processed (ACK/NACK
andSEND
frames). If theCOMMIT
frame defines areceipt
, theRECEIPT
frame is sent once all frames have been replayed. This handler is thread safe.- Author:
- Clement Escoffier
-
-
Constructor Summary
Constructors Constructor Description DefaultCommitHandler()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
handle(ServerFrame serverFrame)
Something has happened, so handle it.
-
-
-
Method Detail
-
handle
public void handle(ServerFrame serverFrame)
Description copied from interface:Handler
Something has happened, so handle it.- Specified by:
handle
in interfaceHandler<ServerFrame>
- Parameters:
serverFrame
- the event to handle
-
-