All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.webpieces.httpparser.api.UnparsedState Maven / Gradle / Ivy

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