Skip to content

Commit 2073374

Browse files
committed
Reorganize packages
1 parent fa69571 commit 2073374

30 files changed

+41
-41
lines changed

client/src/main/java/org/asynchttpclient/AsyncHttpClientConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,13 +11,13 @@
1111
import java.util.Map;
1212
import java.util.concurrent.ThreadFactory;
1313

14-
import org.asynchttpclient.channel.pool.KeepAliveStrategy;
14+
import org.asynchttpclient.channel.ChannelPool;
15+
import org.asynchttpclient.channel.KeepAliveStrategy;
1516
import org.asynchttpclient.filter.IOExceptionFilter;
1617
import org.asynchttpclient.filter.RequestFilter;
1718
import org.asynchttpclient.filter.ResponseFilter;
1819
import org.asynchttpclient.netty.EagerResponseBodyPart;
1920
import org.asynchttpclient.netty.LazyResponseBodyPart;
20-
import org.asynchttpclient.netty.channel.pool.ChannelPool;
2121
import org.asynchttpclient.proxy.ProxyServer;
2222
import org.asynchttpclient.proxy.ProxyServerSelector;
2323

client/src/main/java/org/asynchttpclient/DefaultAsyncHttpClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@
2222

2323
import java.util.concurrent.atomic.AtomicBoolean;
2424

25+
import org.asynchttpclient.channel.ChannelPool;
2526
import org.asynchttpclient.filter.FilterContext;
2627
import org.asynchttpclient.filter.FilterException;
2728
import org.asynchttpclient.filter.RequestFilter;
2829
import org.asynchttpclient.handler.resumable.ResumableAsyncHandler;
2930
import org.asynchttpclient.netty.channel.ChannelManager;
30-
import org.asynchttpclient.netty.channel.pool.ChannelPool;
3131
import org.asynchttpclient.netty.request.NettyRequestSender;
3232
import org.slf4j.Logger;
3333
import org.slf4j.LoggerFactory;

client/src/main/java/org/asynchttpclient/DefaultAsyncHttpClientConfig.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,11 @@
3131
import java.util.Properties;
3232
import java.util.concurrent.ThreadFactory;
3333

34-
import org.asynchttpclient.channel.pool.KeepAliveStrategy;
34+
import org.asynchttpclient.channel.ChannelPool;
35+
import org.asynchttpclient.channel.KeepAliveStrategy;
3536
import org.asynchttpclient.filter.IOExceptionFilter;
3637
import org.asynchttpclient.filter.RequestFilter;
3738
import org.asynchttpclient.filter.ResponseFilter;
38-
import org.asynchttpclient.netty.channel.pool.ChannelPool;
3939
import org.asynchttpclient.proxy.ProxyServer;
4040
import org.asynchttpclient.proxy.ProxyServerSelector;
4141
import org.asynchttpclient.util.ProxyUtils;

client/src/main/java/org/asynchttpclient/DefaultRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import java.util.List;
2727
import java.util.Map;
2828

29-
import org.asynchttpclient.channel.pool.ChannelPoolPartitioning;
29+
import org.asynchttpclient.channel.ChannelPoolPartitioning;
3030
import org.asynchttpclient.cookie.Cookie;
3131
import org.asynchttpclient.proxy.ProxyServer;
3232
import org.asynchttpclient.request.body.generator.BodyGenerator;

client/src/main/java/org/asynchttpclient/Request.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
import java.util.Collection;
2727
import java.util.List;
2828

29-
import org.asynchttpclient.channel.pool.ChannelPoolPartitioning;
29+
import org.asynchttpclient.channel.ChannelPoolPartitioning;
3030
import org.asynchttpclient.cookie.Cookie;
3131
import org.asynchttpclient.proxy.ProxyServer;
3232
import org.asynchttpclient.request.body.generator.BodyGenerator;

client/src/main/java/org/asynchttpclient/RequestBuilderBase.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
import java.util.List;
3232
import java.util.Map;
3333

34-
import org.asynchttpclient.channel.pool.ChannelPoolPartitioning;
34+
import org.asynchttpclient.channel.ChannelPoolPartitioning;
3535
import org.asynchttpclient.cookie.Cookie;
3636
import org.asynchttpclient.proxy.ProxyServer;
3737
import org.asynchttpclient.request.body.generator.BodyGenerator;

client/src/main/java/org/asynchttpclient/netty/channel/pool/ChannelPool.java renamed to client/src/main/java/org/asynchttpclient/channel/ChannelPool.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1313
*/
14-
package org.asynchttpclient.netty.channel.pool;
14+
package org.asynchttpclient.channel;
1515

1616
import io.netty.channel.Channel;
1717

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1313
*/
14-
package org.asynchttpclient.netty.channel.pool;
14+
package org.asynchttpclient.channel;
1515

1616
public interface ChannelPoolPartitionSelector {
1717

client/src/main/java/org/asynchttpclient/channel/pool/ChannelPoolPartitioning.java renamed to client/src/main/java/org/asynchttpclient/channel/ChannelPoolPartitioning.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1111
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1212
*/
13-
package org.asynchttpclient.channel.pool;
13+
package org.asynchttpclient.channel;
1414

1515
import org.asynchttpclient.proxy.ProxyServer;
1616
import org.asynchttpclient.uri.Uri;

client/src/main/java/org/asynchttpclient/channel/pool/KeepAliveStrategy.java renamed to client/src/main/java/org/asynchttpclient/channel/KeepAliveStrategy.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1212
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
1313
*/
14-
package org.asynchttpclient.channel.pool;
14+
package org.asynchttpclient.channel;
1515

1616
import static io.netty.handler.codec.http.HttpHeaders.Names.CONNECTION;
1717
import static io.netty.handler.codec.http.HttpHeaders.Values.*;

0 commit comments

Comments
 (0)