Package io.vertx.mutiny.core.http
Class HttpFrame
- java.lang.Object
-
- io.vertx.mutiny.core.http.HttpFrame
-
public class HttpFrame extends Object
An HTTP/2 frame. 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<HttpFrame>
__TYPE_ARG
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
flags()
io.vertx.core.http.HttpFrame
getDelegate()
int
hashCode()
static HttpFrame
newInstance(io.vertx.core.http.HttpFrame arg)
Buffer
payload()
String
toString()
int
type()
-
-
-
Constructor Detail
-
HttpFrame
public HttpFrame(io.vertx.core.http.HttpFrame delegate)
-
HttpFrame
public HttpFrame(Object delegate)
-
-
Method Detail
-
getDelegate
public io.vertx.core.http.HttpFrame getDelegate()
-
type
public int type()
- Returns:
- the 8-bit type of the frame
-
flags
public int flags()
- Returns:
- the 8-bit flags specific to the frame
-
payload
public Buffer payload()
- Returns:
- the frame payload
-
newInstance
public static HttpFrame newInstance(io.vertx.core.http.HttpFrame arg)
-
-