Interface Http2DataFrame

    • Method Detail

      • padding

        int padding()
        Frame padding to use. Will be non-negative and less than 256.
      • content

        Buffer content()
        Payload of DATA frame. Will not be null.
      • initialFlowControlledBytes

        int initialFlowControlledBytes()
        Returns the number of bytes that are flow-controlled initially, so even if the content() is consumed this will not change.
      • isEndStream

        boolean isEndStream()
        Returns true if the END_STREAM flag is set.
      • copy

        Http2DataFrame copy()
        Produce a copy of this data frame, which contain a copy of the frame contents.
        Returns:
        A copy of this data frame.