|
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.netty.channel; |
| 14 | +package org.asynchttpclient.providers.netty4.channel; |
15 | 15 |
|
16 |
| -import static org.asynchttpclient.providers.netty.util.HttpUtils.WEBSOCKET; |
17 |
| -import static org.asynchttpclient.providers.netty.util.HttpUtils.isSecure; |
18 |
| -import static org.asynchttpclient.providers.netty.util.HttpUtils.isWebSocket; |
| 16 | +import static org.asynchttpclient.providers.netty4.util.HttpUtils.WEBSOCKET; |
| 17 | +import static org.asynchttpclient.providers.netty4.util.HttpUtils.isSecure; |
| 18 | +import static org.asynchttpclient.providers.netty4.util.HttpUtils.isWebSocket; |
19 | 19 | import io.netty.bootstrap.Bootstrap;
|
20 | 20 | import io.netty.channel.Channel;
|
21 | 21 | import io.netty.channel.ChannelInitializer;
|
|
47 | 47 | import org.asynchttpclient.ConnectionPoolPartitioning;
|
48 | 48 | import org.asynchttpclient.ProxyServer;
|
49 | 49 | import org.asynchttpclient.SSLEngineFactory;
|
50 |
| -import org.asynchttpclient.providers.netty.Callback; |
51 |
| -import org.asynchttpclient.providers.netty.NettyAsyncHttpProviderConfig; |
52 |
| -import org.asynchttpclient.providers.netty.channel.pool.ChannelPool; |
53 |
| -import org.asynchttpclient.providers.netty.channel.pool.ChannelPoolPartitionSelector; |
54 |
| -import org.asynchttpclient.providers.netty.channel.pool.DefaultChannelPool; |
55 |
| -import org.asynchttpclient.providers.netty.channel.pool.NoopChannelPool; |
56 |
| -import org.asynchttpclient.providers.netty.future.NettyResponseFuture; |
57 |
| -import org.asynchttpclient.providers.netty.handler.HttpProtocol; |
58 |
| -import org.asynchttpclient.providers.netty.handler.Processor; |
59 |
| -import org.asynchttpclient.providers.netty.handler.WebSocketProtocol; |
60 |
| -import org.asynchttpclient.providers.netty.request.NettyRequestSender; |
| 50 | +import org.asynchttpclient.providers.netty4.Callback; |
| 51 | +import org.asynchttpclient.providers.netty4.NettyAsyncHttpProviderConfig; |
| 52 | +import org.asynchttpclient.providers.netty4.channel.pool.ChannelPool; |
| 53 | +import org.asynchttpclient.providers.netty4.channel.pool.ChannelPoolPartitionSelector; |
| 54 | +import org.asynchttpclient.providers.netty4.channel.pool.DefaultChannelPool; |
| 55 | +import org.asynchttpclient.providers.netty4.channel.pool.NoopChannelPool; |
| 56 | +import org.asynchttpclient.providers.netty4.future.NettyResponseFuture; |
| 57 | +import org.asynchttpclient.providers.netty4.handler.HttpProtocol; |
| 58 | +import org.asynchttpclient.providers.netty4.handler.Processor; |
| 59 | +import org.asynchttpclient.providers.netty4.handler.WebSocketProtocol; |
| 60 | +import org.asynchttpclient.providers.netty4.request.NettyRequestSender; |
61 | 61 | import org.asynchttpclient.uri.Uri;
|
62 | 62 | import org.slf4j.Logger;
|
63 | 63 | import org.slf4j.LoggerFactory;
|
|
0 commit comments