Package io.vertx.ext.stomp
Interface ServerFrame
-
public interface ServerFrame
Structure passed to server handler when receiving a frame. It provides a reference on the receivedFrame
but also on theStompServerConnection
.- Author:
- Clement Escoffier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StompServerConnection
connection()
Frame
frame()
-
-
-
Method Detail
-
frame
Frame frame()
- Returns:
- the received frame
-
connection
StompServerConnection connection()
- Returns:
- the connection
-
-