Package io.vertx.core.http
Interface HttpFrame
-
public interface HttpFrame
An HTTP/2 frame.- Author:
- Julien Viet
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
flags()
Buffer
payload()
int
type()
-
-
-
Method Detail
-
type
int type()
- Returns:
- the 8-bit type of the frame
-
flags
int flags()
- Returns:
- the 8-bit flags specific to the frame
-
payload
Buffer payload()
- Returns:
- the frame payload
-
-