
org.webpieces.httpparser.api.ParsedStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-parser1_1 Show documentation
Show all versions of http-parser1_1 Show documentation
A re-usable asynchronous http 1.1 parser that can be used with any nio client
package org.webpieces.httpparser.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