File tree Expand file tree Collapse file tree 20 files changed +35
-32
lines changed Expand file tree Collapse file tree 20 files changed +35
-32
lines changed Original file line number Diff line number Diff line change 10
10
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
11
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
12
12
*/
13
- package org .asynchttpclient .extra ;
13
+ package org .asynchttpclient .extras . guava ;
14
14
15
15
import org .asynchttpclient .ListenableFuture ;
16
16
Original file line number Diff line number Diff line change 1
- package org .asynchttpclient .extra ;
1
+ package org .asynchttpclient .extras . guava ;
2
2
3
+ import org .asynchttpclient .extra .AsyncHandlerWrapper ;
4
+ import org .asynchttpclient .extra .ThrottleRequestFilter ;
3
5
import org .asynchttpclient .filter .FilterContext ;
4
6
import org .asynchttpclient .filter .FilterException ;
5
7
import org .asynchttpclient .filter .RequestFilter ;
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*/
16
- package org .asynchttpclient .extra ;
16
+ package org .asynchttpclient .extras . jdeferred ;
17
17
18
18
import org .asynchttpclient .AsyncCompletionHandler ;
19
19
import org .asynchttpclient .AsyncHandler ;
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*/
16
- package org .asynchttpclient .extra ;
16
+ package org .asynchttpclient .extras . jdeferred ;
17
17
18
18
public class ContentWriteProgress implements HttpProgress {
19
19
private final long amount ;
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*/
16
- package org .asynchttpclient .extra ;
16
+ package org .asynchttpclient .extras . jdeferred ;
17
17
18
18
public interface HttpProgress {
19
19
}
Original file line number Diff line number Diff line change 13
13
* See the License for the specific language governing permissions and
14
14
* limitations under the License.
15
15
*/
16
- package org .asynchttpclient .extra ;
16
+ package org .asynchttpclient .extras . jdeferred ;
17
17
18
18
import org .asynchttpclient .HttpResponseBodyPart ;
19
19
Original file line number Diff line number Diff line change 21
21
import org .asynchttpclient .AsyncHttpClient ;
22
22
import org .asynchttpclient .DefaultAsyncHttpClient ;
23
23
import org .asynchttpclient .Response ;
24
+ import org .asynchttpclient .extras .jdeferred .AsyncHttpDeferredObject ;
25
+ import org .asynchttpclient .extras .jdeferred .HttpProgress ;
24
26
import org .jdeferred .DoneCallback ;
25
27
import org .jdeferred .ProgressCallback ;
26
28
import org .jdeferred .Promise ;
Original file line number Diff line number Diff line change 10
10
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
11
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
12
12
*/
13
- package org .asynchttpclient .extra ;
13
+ package org .asynchttpclient .extras . registry ;
14
14
15
15
import org .asynchttpclient .AsyncHttpClient ;
16
16
import org .asynchttpclient .AsyncHttpClientConfig ;
Original file line number Diff line number Diff line change 10
10
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
11
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
12
12
*/
13
- package org .asynchttpclient .extra ;
13
+ package org .asynchttpclient .extras . registry ;
14
14
15
15
@ SuppressWarnings ("serial" )
16
16
public class AsyncHttpClientImplException extends RuntimeException {
Original file line number Diff line number Diff line change 10
10
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
11
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
12
12
*/
13
- package org .asynchttpclient .extra ;
13
+ package org .asynchttpclient .extras . registry ;
14
14
15
15
import org .asynchttpclient .AsyncHttpClient ;
16
16
Original file line number Diff line number Diff line change 10
10
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
11
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
12
12
*/
13
- package org .asynchttpclient .extra ;
13
+ package org .asynchttpclient .extras . registry ;
14
14
15
15
import org .asynchttpclient .AsyncHttpClient ;
16
16
Original file line number Diff line number Diff line change 10
10
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
11
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
12
12
*/
13
- package org .asynchttpclient .extra ;
13
+ package org .asynchttpclient .extras . registry ;
14
14
15
15
import org .asynchttpclient .AsyncHttpClient ;
16
16
Original file line number Diff line number Diff line change 10
10
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
11
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
12
12
*/
13
- package org .asynchttpclient .extra ;
13
+ package org .asynchttpclient .extras . registry ;
14
14
15
15
import org .asynchttpclient .AsyncHttpClient ;
16
16
import org .asynchttpclient .AsyncHttpClientConfig ;
17
17
import org .asynchttpclient .AsyncHttpProvider ;
18
18
import org .asynchttpclient .DefaultAsyncHttpClient ;
19
19
import org .asynchttpclient .Response ;
20
20
import org .asynchttpclient .TestAsyncHttpClient ;
21
- import org .asynchttpclient .AsyncHttpClientConfig .Builder ;
22
21
import org .asynchttpclient .async .util .EchoHandler ;
23
22
import org .asynchttpclient .async .util .TestUtils ;
24
- import org .asynchttpclient .extra .AsyncHttpClientFactory ;
25
- import org .asynchttpclient .extra .AsyncHttpClientImplException ;
26
- import org .asynchttpclient .extra .AsyncImplHelper ;
23
+ import org .asynchttpclient .extras . registry .AsyncHttpClientFactory ;
24
+ import org .asynchttpclient .extras . registry .AsyncHttpClientImplException ;
25
+ import org .asynchttpclient .extras . registry .AsyncImplHelper ;
27
26
import org .eclipse .jetty .server .Server ;
28
27
import org .testng .Assert ;
29
28
import org .testng .annotations .AfterClass ;
Original file line number Diff line number Diff line change 10
10
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
11
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
12
12
*/
13
- package org .asynchttpclient .extra ;
13
+ package org .asynchttpclient .extras . registry ;
14
14
15
15
import org .asynchttpclient .AsyncHttpClient ;
16
- import org .asynchttpclient .extra .AsyncHttpClientFactory ;
17
- import org .asynchttpclient .extra .AsyncHttpClientImplException ;
18
- import org .asynchttpclient .extra .AsyncHttpClientRegistryImpl ;
19
- import org .asynchttpclient .extra .AsyncImplHelper ;
16
+ import org .asynchttpclient .extras . registry .AsyncHttpClientFactory ;
17
+ import org .asynchttpclient .extras . registry .AsyncHttpClientImplException ;
18
+ import org .asynchttpclient .extras . registry .AsyncHttpClientRegistryImpl ;
19
+ import org .asynchttpclient .extras . registry .AsyncImplHelper ;
20
20
import org .testng .Assert ;
21
21
import org .testng .annotations .AfterClass ;
22
22
import org .testng .annotations .BeforeClass ;
Original file line number Diff line number Diff line change 10
10
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
11
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
12
12
*/
13
- package org .asynchttpclient .extra ;
13
+ package org .asynchttpclient .extras . registry ;
14
14
15
15
import org .asynchttpclient .AsyncHandler ;
16
16
import org .asynchttpclient .AsyncHttpClient ;
Original file line number Diff line number Diff line change 10
10
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
11
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
12
12
*/
13
- package org .asynchttpclient .extra ;
13
+ package org .asynchttpclient .extras . registry ;
14
14
15
- import org .asynchttpclient .extra .AsyncHttpClientImplException ;
15
+ import org .asynchttpclient .extras . registry .AsyncHttpClientImplException ;
16
16
17
17
@ SuppressWarnings ("serial" )
18
18
public class BadAsyncHttpClientException extends AsyncHttpClientImplException {
Original file line number Diff line number Diff line change 10
10
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
11
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
12
12
*/
13
- package org .asynchttpclient .extra ;
13
+ package org .asynchttpclient .extras . registry ;
14
14
15
- import org .asynchttpclient .extra .AsyncHttpClientRegistryImpl ;
15
+ import org .asynchttpclient .extras . registry .AsyncHttpClientRegistryImpl ;
16
16
17
17
public class BadAsyncHttpClientRegistry extends AsyncHttpClientRegistryImpl {
18
18
Original file line number Diff line number Diff line change 10
10
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
11
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
12
12
*/
13
- package org .asynchttpclient .extra ;
13
+ package org .asynchttpclient .extras . registry ;
14
14
15
15
import org .asynchttpclient .AsyncHttpClientConfig ;
16
16
import org .asynchttpclient .AsyncHttpProvider ;
17
- import org .asynchttpclient .extra .AbstractAsyncHttpClientFactoryTest ;
17
+ import org .asynchttpclient .extras . registry .AbstractAsyncHttpClientFactoryTest ;
18
18
import org .asynchttpclient .providers .grizzly .GrizzlyAsyncHttpProvider ;
19
19
import org .testng .annotations .Test ;
20
20
Original file line number Diff line number Diff line change 10
10
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
11
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
12
12
*/
13
- package org .asynchttpclient .extra ;
13
+ package org .asynchttpclient .extras . registry ;
14
14
15
15
import org .asynchttpclient .AsyncHttpClientConfig ;
16
16
import org .asynchttpclient .AsyncHttpProvider ;
17
- import org .asynchttpclient .extra .AbstractAsyncHttpClientFactoryTest ;
17
+ import org .asynchttpclient .extras . registry .AbstractAsyncHttpClientFactoryTest ;
18
18
import org .asynchttpclient .providers .netty .NettyAsyncHttpProvider ;
19
19
import org .testng .annotations .Test ;
20
20
Original file line number Diff line number Diff line change 10
10
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11
11
* See the Apache License Version 2.0 for the specific language governing permissions and limitations there under.
12
12
*/
13
- package org .asynchttpclient .extra ;
13
+ package org .asynchttpclient .extras . registry ;
14
14
15
- import org .asynchttpclient .extra .AsyncHttpClientRegistryImpl ;
15
+ import org .asynchttpclient .extras . registry .AsyncHttpClientRegistryImpl ;
16
16
17
17
public class TestAsyncHttpClientRegistry extends AsyncHttpClientRegistryImpl {
18
18
You can’t perform that action at this time.
0 commit comments