
org.webpieces.httpparser.api.UnparsedState 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 class UnparsedState {
private ParsingState currentlyParsing;
private int currentUnparsedSize;
public UnparsedState(ParsingState state, int readableSize) {
this.currentlyParsing = state;
this.currentUnparsedSize = readableSize;
}
public ParsingState getCurrentlyParsing() {
return currentlyParsing;
}
public int getCurrentUnparsedSize() {
return currentUnparsedSize;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy