Package org.eclipse.jetty.http2.parser
Class SettingsBodyParser
- java.lang.Object
-
- org.eclipse.jetty.http2.parser.BodyParser
-
- org.eclipse.jetty.http2.parser.SettingsBodyParser
-
public class SettingsBodyParser extends BodyParser
-
-
Constructor Summary
Constructors Constructor Description SettingsBodyParser(HeaderParser headerParser, Parser.Listener listener)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description protected voidemptyBody(ByteBuffer buffer)protected booleanonSettings(Map<Integer,Integer> settings)booleanparse(ByteBuffer buffer)Parses the body bytes in the givenbuffer; only the body bytes are consumed, therefore when this method returns, the buffer may contain unconsumed bytes.static SettingsFrameparseBody(ByteBuffer buffer)protected voidreset()-
Methods inherited from class org.eclipse.jetty.http2.parser.BodyParser
connectionFailure, getBodyLength, getStreamId, hasFlag, isEndStream, isPadding, notifyData, notifyGoAway, notifyHeaders, notifyPing, notifyPriority, notifyPushPromise, notifyReset, notifySettings, notifyWindowUpdate
-
-
-
-
Constructor Detail
-
SettingsBodyParser
public SettingsBodyParser(HeaderParser headerParser, Parser.Listener listener)
-
-
Method Detail
-
reset
protected void reset()
-
emptyBody
protected void emptyBody(ByteBuffer buffer)
- Overrides:
emptyBodyin classBodyParser
-
parse
public boolean parse(ByteBuffer buffer)
Description copied from class:BodyParserParses the body bytes in the given
buffer; only the body bytes are consumed, therefore when this method returns, the buffer may contain unconsumed bytes.- Specified by:
parsein classBodyParser- Parameters:
buffer- the buffer to parse- Returns:
- true if the whole body bytes were parsed, false if not enough body bytes were present in the buffer
-
parseBody
public static SettingsFrame parseBody(ByteBuffer buffer)
-
-