
com.webpieces.http2parser.api.Http2Memento Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http2-parser Show documentation
Show all versions of http2-parser Show documentation
A re-usable asynchronous http2 parser
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