Package com.webpieces.hpack.api
Interface UnmarshalState
-
- All Known Implementing Classes:
UnmarshalStateImpl
public interface UnmarshalState
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetLeftOverDataSize()intgetNumBytesJustParsed()java.util.List<com.webpieces.http2.api.dto.lowlevel.lib.Http2Msg>getParsedFrames()In the case where you pass in bytes of 2 or more messages, we give you back all the parsed messages so farjava.util.concurrent.CompletableFuture<java.lang.Void>getProcessFuture()voidsetDecoderMaxTableSize(int newSize)voidsetIncomingMaxFrameSize(long maxFrameSize)voidsetProcessFuturee(java.util.concurrent.CompletableFuture<java.lang.Void> future)
-
-
-
Method Detail
-
getParsedFrames
java.util.List<com.webpieces.http2.api.dto.lowlevel.lib.Http2Msg> getParsedFrames()
In the case where you pass in bytes of 2 or more messages, we give you back all the parsed messages so far- Returns:
-
getLeftOverDataSize
int getLeftOverDataSize()
-
getNumBytesJustParsed
int getNumBytesJustParsed()
-
setDecoderMaxTableSize
void setDecoderMaxTableSize(int newSize)
-
setIncomingMaxFrameSize
void setIncomingMaxFrameSize(long maxFrameSize)
-
getProcessFuture
java.util.concurrent.CompletableFuture<java.lang.Void> getProcessFuture()
-
setProcessFuturee
void setProcessFuturee(java.util.concurrent.CompletableFuture<java.lang.Void> future)
-
-