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 commonFrames. It defines a non-STOMP frame (PING) that is used for heartbeats. When such frame is written on the wire it is just the0byte. This class is thread-safe. NOTE: This class has been automatically generated from theoriginalnon Mutiny-ified interface using Vert.x codegen.
-
-
Field Summary
Fields Modifier and Type Field Description static TypeArg<Frames>__TYPE_ARGstatic io.vertx.ext.stomp.FramePING
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static io.vertx.ext.stomp.FramecreateErrorFrame(String message, Map<String,String> headers, String body)static io.vertx.ext.stomp.FramecreateReceiptFrame(String receiptId, Map<String,String> headers)booleanequals(Object o)io.vertx.ext.stomp.FramesgetDelegate()static voidhandleReceipt(io.vertx.ext.stomp.Frame frame, StompServerConnection connection)inthashCode()static FramesnewInstance(io.vertx.ext.stomp.Frames arg)static io.vertx.ext.stomp.Frameping()StringtoString()
-
-
-
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)
-
-