public class io.vertx.core.http.impl.HttpFrameImpl extends java.lang.Object implements io.vertx.core.http.HttpFrame
{
private final int type;
private final int flags;
private final io.vertx.core.buffer.Buffer payload;
public void <init>(int, int, io.vertx.core.buffer.Buffer)
{
io.vertx.core.buffer.Buffer v;
int v, v;
io.vertx.core.http.impl.HttpFrameImpl v;
v := @this: io.vertx.core.http.impl.HttpFrameImpl;
v := @parameter: int;
v := @parameter: int;
v := @parameter: io.vertx.core.buffer.Buffer;
specialinvoke v.<java.lang.Object: void <init>()>();
v.<io.vertx.core.http.impl.HttpFrameImpl: int type> = v;
v.<io.vertx.core.http.impl.HttpFrameImpl: int flags> = v;
v.<io.vertx.core.http.impl.HttpFrameImpl: io.vertx.core.buffer.Buffer payload> = v;
return;
}
public int flags()
{
int v;
io.vertx.core.http.impl.HttpFrameImpl v;
v := @this: io.vertx.core.http.impl.HttpFrameImpl;
v = v.<io.vertx.core.http.impl.HttpFrameImpl: int flags>;
return v;
}
public int type()
{
int v;
io.vertx.core.http.impl.HttpFrameImpl v;
v := @this: io.vertx.core.http.impl.HttpFrameImpl;
v = v.<io.vertx.core.http.impl.HttpFrameImpl: int type>;
return v;
}
public io.vertx.core.buffer.Buffer payload()
{
io.vertx.core.http.impl.HttpFrameImpl v;
io.vertx.core.buffer.Buffer v;
v := @this: io.vertx.core.http.impl.HttpFrameImpl;
v = v.<io.vertx.core.http.impl.HttpFrameImpl: io.vertx.core.buffer.Buffer payload>;
return v;
}
}