Package com.facebook.presto.jdbc.internal.airlift.http.client.netty

Examples of com.facebook.presto.jdbc.internal.airlift.http.client.netty.StandaloneNettyAsyncHttpClient


    {
        checkNotNull(userAgent, "userAgent is null");
        checkNotNull(queryResultsCodec, "queryResultsCodec is null");

        this.queryInfoCodec = queryResultsCodec;
        this.httpClient = new StandaloneNettyAsyncHttpClient("jdbc",
                new HttpClientConfig()
                        .setConnectTimeout(new Duration(10, TimeUnit.SECONDS))
                        .setSocksProxy(socksProxy),
                new NettyAsyncHttpClientConfig(),
                new NettyIoPoolConfig(),
View Full Code Here

TOP

Related Classes of com.facebook.presto.jdbc.internal.airlift.http.client.netty.StandaloneNettyAsyncHttpClient

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.