Package io.vertx.mutiny.ext.stomp
Class ServerFrame
- java.lang.Object
-
- io.vertx.mutiny.ext.stomp.ServerFrame
-
public class ServerFrame extends Object
Structure passed to server handler when receiving a frame. It provides a reference on the receivedFrame
but also on theStompServerConnection
. NOTE: This class has been automatically generated from theoriginal
non Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<ServerFrame>
__TYPE_ARG
-
Constructor Summary
Constructors Constructor Description ServerFrame(io.vertx.ext.stomp.ServerFrame delegate)
ServerFrame(Object delegate)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description StompServerConnection
connection()
boolean
equals(Object o)
io.vertx.ext.stomp.Frame
frame()
io.vertx.ext.stomp.ServerFrame
getDelegate()
int
hashCode()
static ServerFrame
newInstance(io.vertx.ext.stomp.ServerFrame arg)
String
toString()
-
-
-
Field Detail
-
__TYPE_ARG
public static final TypeArg<ServerFrame> __TYPE_ARG
-
-
Constructor Detail
-
ServerFrame
public ServerFrame(io.vertx.ext.stomp.ServerFrame delegate)
-
ServerFrame
public ServerFrame(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.ext.stomp.ServerFrame getDelegate()
-
frame
public io.vertx.ext.stomp.Frame frame()
- Returns:
- the received frame
-
connection
public StompServerConnection connection()
- Returns:
- the connection
-
newInstance
public static ServerFrame newInstance(io.vertx.ext.stomp.ServerFrame arg)
-
-