Interface Http2HeadersFrame

All Superinterfaces:
Http2Frame, Http2StreamFrame
All Known Implementing Classes:
DefaultHttp2HeadersFrame

@UnstableApi public interface Http2HeadersFrame extends Http2StreamFrame
HTTP/2 HEADERS frame.
  • Method Summary

    Modifier and Type
    Method
    Description
    A complete header list.
    boolean
    Returns true if the END_STREAM flag is set.
    int
    Frame padding to use.

    Methods inherited from interface io.netty.handler.codec.http2.Http2Frame

    name

    Methods inherited from interface io.netty.handler.codec.http2.Http2StreamFrame

    stream, stream
  • Method Details

    • 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()
      Returns true if the END_STREAM flag is set.