use of org.webpieces.data.api.BufferCreationPool in project webpieces by deanhiller.
the class Http2ClientFactory method createHttpClient.
public static Http2Client createHttpClient(Http2Config config, ChannelManager mgr, Executor executor, Time time) {
BufferCreationPool pool = new BufferCreationPool();
HpackParser hpackParser = HpackParserFactory.createParser(pool, false);
InjectionConfig injConfig = new InjectionConfig(hpackParser, time, config);
return createHttpClient(mgr, injConfig);
}
Aggregations