Interface HttpFrame


public interface HttpFrame
Author:
David BRASSELY (david.brassely at graviteesource.com), GraviteeSource Team
  • Method Summary

    Modifier and Type
    Method
    Description
    static HttpFrame
    create(int type, int flags, Buffer payload)
     
    int
     
     
    int
     
  • Method Details

    • type

      int type()
      Returns:
      the 8-bit type of the frame
    • flags

      int flags()
      Returns:
      the 8-bit flags specific to the frame
    • payload

      Buffer payload()
      Returns:
      the frame payload
    • create

      static HttpFrame create(int type, int flags, Buffer payload)