-
- All Superinterfaces:
Http2Frame
,Http2StreamFrame
- All Known Implementing Classes:
DefaultHttp2HeadersFrame
@UnstableApi public interface Http2HeadersFrame extends Http2StreamFrame
HTTP/2 HEADERS frame.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Http2Headers
headers()
A complete header list.boolean
isEndStream()
Returnstrue
if the END_STREAM flag is set.int
padding()
Frame padding to use.-
Methods inherited from interface io.netty5.handler.codec.http2.Http2Frame
name
-
Methods inherited from interface io.netty5.handler.codec.http2.Http2StreamFrame
stream, stream
-
-
-
-
Method Detail
-
headers
Http2Headers headers()
A complete header list. CONTINUATION frames are automatically handled.
-
padding
int padding()
Frame padding to use. Must be non-negative and less than 256.
-
isEndStream
boolean isEndStream()
Returnstrue
if the END_STREAM flag is set.
-
-