
com.webpieces.httpparser2.api.ParsedStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-parser2 Show documentation
Show all versions of http-parser2 Show documentation
A re-usable asynchronous http2 parser
The newest version!
package com.webpieces.httpparser2.api;
public enum ParsedStatus {
/**
* All data given was parsed and message is returned
*/
ALL_DATA_PARSED,
/**
* Only part of the http message was provided
*/
NEED_MORE_DATA,
/**
* More than one http message was provided(perhaps 1.5 to be honest) and we
* parsed the first one and returned the leftover in a buffer
*/
MSG_PARSED_AND_LEFTOVER_DATA;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy