Package io.vertx.mutiny.ext.stomp
Class Frames
- java.lang.Object
-
- io.vertx.mutiny.ext.stomp.Frames
-
public class Frames extends Object
Utility methods to build commonFrame
s. It defines a non-STOMP frame (PING
) that is used for heartbeats. When such frame is written on the wire it is just the0
byte. This class is thread-safe. 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<Frames>
__TYPE_ARG
static io.vertx.ext.stomp.Frame
PING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static io.vertx.ext.stomp.Frame
createErrorFrame(String message, Map<String,String> headers, String body)
static io.vertx.ext.stomp.Frame
createReceiptFrame(String receiptId, Map<String,String> headers)
boolean
equals(Object o)
io.vertx.ext.stomp.Frames
getDelegate()
static void
handleReceipt(io.vertx.ext.stomp.Frame frame, StompServerConnection connection)
int
hashCode()
static Frames
newInstance(io.vertx.ext.stomp.Frames arg)
static io.vertx.ext.stomp.Frame
ping()
String
toString()
-
-
-
Constructor Detail
-
Frames
public Frames(io.vertx.ext.stomp.Frames delegate)
-
Frames
public Frames(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.ext.stomp.Frames getDelegate()
-
createErrorFrame
public static io.vertx.ext.stomp.Frame createErrorFrame(String message, Map<String,String> headers, String body)
-
createReceiptFrame
public static io.vertx.ext.stomp.Frame createReceiptFrame(String receiptId, Map<String,String> headers)
-
handleReceipt
public static void handleReceipt(io.vertx.ext.stomp.Frame frame, StompServerConnection connection)
-
ping
public static io.vertx.ext.stomp.Frame ping()
-
newInstance
public static Frames newInstance(io.vertx.ext.stomp.Frames arg)
-
-