|
11 | 11 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
12 | 12 | * See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
|
13 | 13 | */
|
14 |
| -package org.asynchttpclient.providers.netty3.channel; |
| 14 | +package org.asynchttpclient.providers.netty.channel; |
15 | 15 |
|
16 | 16 | import static org.asynchttpclient.providers.netty.commons.util.HttpUtils.WEBSOCKET;
|
17 | 17 | import static org.asynchttpclient.providers.netty.commons.util.HttpUtils.isSecure;
|
|
35 | 35 | import org.asynchttpclient.ConnectionPoolPartitioning;
|
36 | 36 | import org.asynchttpclient.ProxyServer;
|
37 | 37 | import org.asynchttpclient.SSLEngineFactory;
|
| 38 | +import org.asynchttpclient.providers.netty.Callback; |
| 39 | +import org.asynchttpclient.providers.netty.NettyAsyncHttpProviderConfig; |
| 40 | +import org.asynchttpclient.providers.netty.channel.pool.ChannelPool; |
| 41 | +import org.asynchttpclient.providers.netty.channel.pool.DefaultChannelPool; |
| 42 | +import org.asynchttpclient.providers.netty.channel.pool.NoopChannelPool; |
38 | 43 | import org.asynchttpclient.providers.netty.commons.channel.pool.ChannelPoolPartitionSelector;
|
39 |
| -import org.asynchttpclient.providers.netty3.Callback; |
40 |
| -import org.asynchttpclient.providers.netty3.NettyAsyncHttpProviderConfig; |
41 |
| -import org.asynchttpclient.providers.netty3.channel.pool.ChannelPool; |
42 |
| -import org.asynchttpclient.providers.netty3.channel.pool.DefaultChannelPool; |
43 |
| -import org.asynchttpclient.providers.netty3.channel.pool.NoopChannelPool; |
44 |
| -import org.asynchttpclient.providers.netty3.future.NettyResponseFuture; |
45 |
| -import org.asynchttpclient.providers.netty3.handler.HttpProtocol; |
46 |
| -import org.asynchttpclient.providers.netty3.handler.Processor; |
47 |
| -import org.asynchttpclient.providers.netty3.handler.Protocol; |
48 |
| -import org.asynchttpclient.providers.netty3.handler.WebSocketProtocol; |
49 |
| -import org.asynchttpclient.providers.netty3.request.NettyRequestSender; |
| 44 | +import org.asynchttpclient.providers.netty.future.NettyResponseFuture; |
| 45 | +import org.asynchttpclient.providers.netty.handler.HttpProtocol; |
| 46 | +import org.asynchttpclient.providers.netty.handler.Processor; |
| 47 | +import org.asynchttpclient.providers.netty.handler.Protocol; |
| 48 | +import org.asynchttpclient.providers.netty.handler.WebSocketProtocol; |
| 49 | +import org.asynchttpclient.providers.netty.request.NettyRequestSender; |
50 | 50 | import org.asynchttpclient.uri.Uri;
|
51 | 51 | import org.jboss.netty.bootstrap.ClientBootstrap;
|
52 | 52 | import org.jboss.netty.channel.Channel;
|
|
0 commit comments