File tree 4 files changed +17
-7
lines changed
src/main/java/com/ning/http/client/providers/netty
4 files changed +17
-7
lines changed Original file line number Diff line number Diff line change 15
15
*/
16
16
package com .ning .http .client .providers .netty ;
17
17
18
- import static com .ning .http .client .providers .netty .NettyAsyncHttpProviderConfig .*;
19
- import static com .ning .http .util .AsyncHttpProviderUtils .*;
20
- import static com .ning .http .util .MiscUtil .*;
21
- import static org .jboss .netty .channel .Channels .*;
18
+ import static com .ning .http .client .providers .netty .NettyAsyncHttpProviderConfig .BOSS_EXECUTOR_SERVICE ;
19
+ import static com .ning .http .client .providers .netty .NettyAsyncHttpProviderConfig .DISABLE_NESTED_REQUEST ;
20
+ import static com .ning .http .client .providers .netty .NettyAsyncHttpProviderConfig .EXECUTE_ASYNC_CONNECT ;
21
+ import static com .ning .http .client .providers .netty .NettyAsyncHttpProviderConfig .HTTPS_CLIENT_CODEC_MAX_CHUNK_SIZE ;
22
+ import static com .ning .http .client .providers .netty .NettyAsyncHttpProviderConfig .HTTPS_CLIENT_CODEC_MAX_HEADER_SIZE ;
23
+ import static com .ning .http .client .providers .netty .NettyAsyncHttpProviderConfig .HTTPS_CLIENT_CODEC_MAX_INITIAL_LINE_LENGTH ;
24
+ import static com .ning .http .client .providers .netty .NettyAsyncHttpProviderConfig .HTTP_CLIENT_CODEC_MAX_CHUNK_SIZE ;
25
+ import static com .ning .http .client .providers .netty .NettyAsyncHttpProviderConfig .HTTP_CLIENT_CODEC_MAX_HEADER_SIZE ;
26
+ import static com .ning .http .client .providers .netty .NettyAsyncHttpProviderConfig .HTTP_CLIENT_CODEC_MAX_INITIAL_LINE_LENGTH ;
27
+ import static com .ning .http .client .providers .netty .NettyAsyncHttpProviderConfig .REUSE_ADDRESS ;
28
+ import static com .ning .http .client .providers .netty .NettyAsyncHttpProviderConfig .SOCKET_CHANNEL_FACTORY ;
29
+ import static com .ning .http .client .providers .netty .NettyAsyncHttpProviderConfig .USE_BLOCKING_IO ;
30
+ import static com .ning .http .util .AsyncHttpProviderUtils .DEFAULT_CHARSET ;
31
+ import static com .ning .http .util .MiscUtil .isNonEmpty ;
32
+ import static org .jboss .netty .channel .Channels .pipeline ;
22
33
23
34
import java .io .File ;
24
35
import java .io .FileInputStream ;
Original file line number Diff line number Diff line change 41
41
import java .nio .channels .ClosedChannelException ;
42
42
import java .util .concurrent .atomic .AtomicBoolean ;
43
43
44
-
45
44
/**
46
45
* Non Blocking connect.
47
46
*/
Original file line number Diff line number Diff line change 15
15
*/
16
16
package com .ning .http .client .providers .netty .timeout ;
17
17
18
- import static com .ning .http .util .DateUtil .* ;
18
+ import static com .ning .http .util .DateUtil .millisTime ;
19
19
20
20
import org .jboss .netty .util .Timeout ;
21
21
Original file line number Diff line number Diff line change 15
15
*/
16
16
package com .ning .http .client .providers .netty .timeout ;
17
17
18
- import static com .ning .http .util .DateUtil .* ;
18
+ import static com .ning .http .util .DateUtil .millisTime ;
19
19
20
20
import org .jboss .netty .util .Timeout ;
21
21
You can’t perform that action at this time.
0 commit comments