
com.webpieces.http2parser.api.Http2ParserFactory 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 com.webpieces.http2parser.impl.Http2ParserImpl;
import org.webpieces.data.api.BufferPool;
public class Http2ParserFactory {
public static Http2Parser createParser(BufferPool bufferPool) {
return new Http2ParserImpl(bufferPool);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy