Class HpackEncoder

java.lang.Object
org.eclipse.jetty.http2.hpack.HpackEncoder

public class HpackEncoder extends Object
  • Constructor Details Link icon

    • HpackEncoder Link icon

      public HpackEncoder()
  • Method Details Link icon

    • getMaxTableCapacity Link icon

      public int getMaxTableCapacity()
    • setMaxTableCapacity Link icon

      public void setMaxTableCapacity(int maxTableSizeLimit)

      Sets the limit for the capacity of the dynamic header table.

      This value is set by the remote peer via the SETTINGS_HEADER_TABLE_SIZE setting.

      Parameters:
      maxTableSizeLimit - the limit for capacity of the dynamic header table
    • getTableCapacity Link icon

      public int getTableCapacity()
    • setTableCapacity Link icon

      public void setTableCapacity(int tableCapacity)

      Sets the capacity of the dynamic header table.

      The value of the capacity may be changed from 0 up to getMaxTableCapacity(). An HPACK instruction with the new capacity value will be sent to the decoder when the next call to encode(ByteBuffer, MetaData) is made.

      Parameters:
      tableCapacity - the capacity of the dynamic header table
    • getMaxHeaderListSize Link icon

      public int getMaxHeaderListSize()
    • setMaxHeaderListSize Link icon

      public void setMaxHeaderListSize(int maxHeaderListSize)
    • getHpackContext Link icon

      public HpackContext getHpackContext()
    • isValidateEncoding Link icon

      public boolean isValidateEncoding()
    • setValidateEncoding Link icon

      public void setValidateEncoding(boolean validateEncoding)
    • encode Link icon

      public void encode(ByteBuffer buffer, MetaData metadata) throws HpackException
      Throws:
      HpackException
    • encodeMaxDynamicTableSize Link icon

      public void encodeMaxDynamicTableSize(ByteBuffer buffer, int maxTableSize)
    • encode Link icon

      public void encode(ByteBuffer buffer, HttpField field)