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

com.webpieces.http2parser.api.Http2Memento Maven / Gradle / Ivy

There is a newer version: 2.1.1
Show newest version
package com.webpieces.http2parser.api;

import java.util.List;

import com.webpieces.http2parser.api.dto.lib.Http2Frame;

public interface Http2Memento {

	/**
	 * In the case where you pass in bytes 2 or more messages, we
	 * give you back all the parsed messages so far
	 * @return
	 */
	List getParsedFrames();
	
	void setIncomingMaxFrameSize(long maxFrameSize);

	int getLeftOverDataSize();

	int getNumBytesJustParsed();

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy