Class HTTP2Stream.FrameList
java.lang.Object
org.eclipse.jetty.http2.HTTP2Stream.FrameList
- Enclosing class:
- HTTP2Stream
An ordered list of frames belonging to the same stream.
- 
Constructor SummaryConstructorsConstructorDescriptionFrameList(HeadersFrame headers) Creates a frame list of just the given HEADERS frame.FrameList(HeadersFrame headers, DataFrame data, HeadersFrame trailers) Creates a frame list of the given frames.
- 
Method Summary
- 
Constructor Details- 
FrameListCreates a frame list of just the given HEADERS frame. - Parameters:
- headers- the HEADERS frame
 
- 
FrameListCreates a frame list of the given frames. - Parameters:
- headers- the HEADERS frame for the headers
- data- the DATA frame for the content, or null if there is no content
- trailers- the HEADERS frame for the trailers, or null if there are no trailers
 
 
- 
- 
Method Details- 
getStreamIdpublic int getStreamId()- Returns:
- the stream ID of the frames in this list
 
- 
getFrames- Returns:
- a List of non-null frames
 
 
-