
com.webpieces.http2parser.impl.FrameMarshallerImpl 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.impl;
import com.webpieces.http2parser.api.FrameMarshaller;
import org.webpieces.data.api.BufferPool;
import org.webpieces.data.api.DataWrapperGenerator;
public abstract class FrameMarshallerImpl implements FrameMarshaller {
protected BufferPool bufferPool;
protected DataWrapperGenerator dataGen;
FrameMarshallerImpl(BufferPool bufferPool, DataWrapperGenerator dataGen) {
this.bufferPool = bufferPool;
this.dataGen = dataGen;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy