use of com.webpieces.hpack.api.HpackParser in project webpieces by deanhiller.
the class Http2ClientFactory method createHttpClient.
public static Http2Client createHttpClient(Http2Config config, ChannelManager mgr, BufferPool pool) {
HpackParser hpackParser = HpackParserFactory.createParser(pool, false);
InjectionConfig injConfig = new InjectionConfig(hpackParser, new TimeImpl(), config);
return createHttpClient(config.getId(), mgr, injConfig);
}
Aggregations