Interface Http2FrameSizePolicy

All Known Implementing Classes:
DefaultHttp2FrameReader, DefaultHttp2FrameWriter

public interface Http2FrameSizePolicy
  • Method Summary

    Modifier and Type
    Method
    Description
    int
    Gets the maximum allowed frame size.
    void
    maxFrameSize(int max)
    Sets the maximum allowed frame size.
  • Method Details

    • maxFrameSize

      void maxFrameSize(int max) throws Http2Exception
      Sets the maximum allowed frame size. Attempts to write frames longer than this maximum will fail.

      This value is used to represent SETTINGS_MAX_FRAME_SIZE. This method should only be called by Netty (not users) as a result of a receiving a SETTINGS frame.

      Throws:
      Http2Exception
    • maxFrameSize

      int maxFrameSize()
      Gets the maximum allowed frame size.

      This value is used to represent SETTINGS_MAX_FRAME_SIZE. The initial value defined by the RFC is unlimited but enforcing a lower limit is generally permitted. Http2CodecUtil.DEFAULT_MAX_FRAME_SIZE can be used as a more conservative default.