Package io.vertx.ext.stomp
Class DefaultAckHandler
- java.lang.Object
-
- io.vertx.ext.stomp.DefaultAckHandler
-
- All Implemented Interfaces:
Handler<ServerFrame>
public class DefaultAckHandler extends Object implements Handler<ServerFrame>
STOMP compliant actions executed when receiving aACK
frame. It removes the acknowledges messages from the list of messages waiting for acknowledgment. If theACK
frame specifies a transaction id, the acknowledgment is delayed until the transaction commit. This handler is thread safe.- Author:
- Clement Escoffier
-
-
Constructor Summary
Constructors Constructor Description DefaultAckHandler()
-
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
-
-