Async Http Client


Source link: https://github.com/AsyncHttpClient/async-http-client

Async Http Client ( @AsyncHttpClient on twitter)

Javadoc

Getting started, and use WebSockets

The Async Http Client library's purpose is to allow Java applications to easily execute HTTP requests and asynchronously process the HTTP responses. The library also supports the WebSocket Protocol. The Async HTTP Client library is simple to use.

It's built on top of Netty and currently requires JDK8.

Latest version:

Installation

First, in order to add it to your Maven project, simply download from Maven central or add this dependency:

<dependency>  <groupId>org.asynchttpclient</groupId>  <artifactId>async-http-client</artifactId>  <version>LATEST_VERSION</version> </dependency>

Usage

Then in your code you can simply do

import org.asynchttpclient.*; import java.util.concurrent.Future;  AsyncHttpClient asyncHttpClient = new DefaultAsyncHttpClient();
 Future<Response> f = asyncHttpClient.prepareGet("http://www.example.com/").execute();
 Response r = f.get();

Note that in this case all the content must be read fully in memory, even if you used getResponseBodyAsStream() method on returned Response object.

You can also accomplish asynchronous (non-blocking) operation without using a Future if you want to receive and process the response in your handler:

import org.asynchttpclient.*; import java.util.concurrent.Future;  AsyncHttpClient asyncHttpClient = new DefaultAsyncHttpClient();
 asyncHttpClient.prepareGet("http://www.example.com/").execute(new AsyncCompletionHandler<Response>(){

 @Override
  public Response onCompleted(Response response) throws Exception{

// Do something with the Response

// ...

return response;
  
}

 @Override
  public void onThrowable(Throwable t){

// Something wrong happened.
  
}
 
}
);

(this will also fully read Response in memory before calling onCompleted)

Alternatively you may use continuations (through Java 8 class CompletableFuture<T>) to accomplish asynchronous (non-blocking) solution. The equivalent continuation approach to the previous example is:

import static org.asynchttpclient.Dsl.*;  import org.asynchttpclient.*; import java.util.concurrent.CompletableFuture;  AsyncHttpClient asyncHttpClient = asyncHttpClient();
 CompletableFuture<Response> promise = asyncHttpClient

 .prepareGet("http://www.example.com/")

 .execute()

 .toCompletableFuture()

 .exceptionally(t -> {
 /* Something wrong happened... */  
}
 )

 .thenApply(resp -> {
 /*  Do something with the Response */ return resp; 
}
);
 promise.join();
 // wait for completion

You may get the complete maven project for this simple demo from org.asynchttpclient.example

You can also mix Future with AsyncHandler to only retrieve part of the asynchronous response

import org.asynchttpclient.*; import java.util.concurrent.Future;  AsyncHttpClient asyncHttpClient = new DefaultAsyncHttpClient();
 Future<Integer> f = asyncHttpClient.prepareGet("http://www.example.com/").execute(
 new AsyncCompletionHandler<Integer>(){

 @Override
  public Integer onCompleted(Response response) throws Exception{

// Do something with the Response

return response.getStatusCode();

  
}

 @Override
  public void onThrowable(Throwable t){

// Something wrong happened.
  
}
 
}
);
  int statusCode = f.get();

which is something you want to do for large responses: this way you can process content as soon as it becomes available, piece by piece, without having to buffer it all in memory.

You have full control on the Response life cycle, so you can decide at any moment to stop processing what the server is sending back:

import static org.asynchttpclient.Dsl.*;  import org.asynchttpclient.*; import java.util.concurrent.Future;  AsyncHttpClient c = asyncHttpClient();
 Future<String> f = c.prepareGet("http://www.example.com/").execute(new AsyncHandler<String>() {

  private ByteArrayOutputStream bytes = new ByteArrayOutputStream();

@Override
  public STATE onStatusReceived(HttpResponseStatus status) throws Exception {

int statusCode = status.getStatusCode();

// The Status have been read

// If you don't want to read the headers,body or stop processing the response

if (statusCode >= 500) {

 return STATE.ABORT;

}

  
}

@Override
  public STATE onHeadersReceived(HttpResponseHeaders h) throws Exception {

Headers headers = h.getHeaders();

 // The headers have been read

 // If you don't want to read the body, or stop processing the response

 return STATE.ABORT;
  
}

@Override
  public STATE onBodyPartReceived(HttpResponseBodyPart bodyPart) throws Exception {

 bytes.write(bodyPart.getBodyPartBytes());

 return STATE.CONTINUE;
  
}

@Override
  public String onCompleted() throws Exception {

 // Will be invoked once the response has been fully read or a ResponseComplete exception

 // has been thrown.

 // NOTE: should probably use Content-Encoding from headers

 return bytes.toString("UTF-8");

  
}

@Override
  public void onThrowable(Throwable t) {

  
}
 
}
);
  String bodyResponse = f.get();

Configuration

Finally, you can also configure the AsyncHttpClient via its AsyncHttpClientConfig object:

AsyncHttpClientConfig cf = new DefaultAsyncHttpClientConfig.Builder()
  .setProxyServer(new ProxyServer.Builder("127.0.0.1", 38080)).build();
  AsyncHttpClient c = new DefaultAsyncHttpClient(cf);

WebSocket

Async Http Client also supports WebSocket by simply doing:

WebSocket websocket = c.prepareGet(getTargetUrl())

 .execute(new WebSocketUpgradeHandler.Builder().addWebSocketListener(

  new WebSocketTextListener() {

@Override

  public void onMessage(String message) {

  
}

@Override

  public void onOpen(WebSocket websocket) {

websocket.sendTextMessage("...").sendMessage("...");

  
}

@Override

  public void onClose(WebSocket websocket) {

latch.countDown();

  
}

@Override

  public void onError(Throwable t) {

  
}

 
}
).build()).get();

User Group

Keep up to date on the library development by joining the Asynchronous HTTP Client discussion group

Google Group

Contributing

Of course, Pull Requests are welcome.

Here a the few rules we'd like you to respect if you do so:

  • Only edit the code related to the suggested change, so DON'T automatically format the classes you've edited.
  • Respect the formatting rules:
    • Indent with 4 spaces
  • Your PR can contain multiple commits when submitting, but once it's been reviewed, we'll ask you to squash them into a single one
  • Regarding licensing:
    • You must be the original author of the code you suggest.
    • You must give the copyright to "the AsyncHttpClient Project"

Resources

Small, but beautiful MaterialImageView.

Open Location Codes are short generated codes, that can be used like street addresses, for places where street addresses don't exist.

Clockwise is a watch face framework for Android Wear developed by ustwo. It extends the Android Wear Watch Face API and provides base classes and helpers for quickly and correctly developing watch faces. This includes properly handling the various modes of operation, hardware constraints, changes in date/time/time zone, access to data, and performance considerations.

Gradle plugin to upload your APK and app details to the Google Play Store. Needs the com.android.application plugin applied. Supports the Android Application Plugin as of version 1.0.0.

Android Library to make TimePicker View.

SwipeBack is a android library that can finish a activity by using gesture.

Topics


2D Engines   3D Engines   9-Patch   Action Bars   Activities   ADB   Advertisements   Analytics   Animations   ANR   AOP   API   APK   APT   Architecture   Audio   Autocomplete   Background Processing   Backward Compatibility   Badges   Bar Codes   Benchmarking   Bitmaps   Bluetooth   Blur Effects   Bread Crumbs   BRMS   Browser Extensions   Build Systems   Bundles   Buttons   Caching   Camera   Canvas   Cards   Carousels   Changelog   Checkboxes   Cloud Storages   Color Analysis   Color Pickers   Colors   Comet/Push   Compass Sensors   Conferences   Content Providers   Continuous Integration   Crash Reports   Credit Cards   Credits   CSV   Curl/Flip   Data Binding   Data Generators   Data Structures   Database   Database Browsers   Date &   Debugging   Decompilers   Deep Links   Dependency Injections   Design   Design Patterns   Dex   Dialogs   Distributed Computing   Distribution Platforms   Download Managers   Drawables   Emoji   Emulators   EPUB   Equalizers &   Event Buses   Exception Handling   Face Recognition   Feedback &   File System   File/Directory   Fingerprint   Floating Action   Fonts   Forms   Fragments   FRP   FSM   Functional Programming   Gamepads   Games   Geocaching   Gestures   GIF   Glow Pad   Gradle Plugins   Graphics   Grid Views   Highlighting   HTML   HTTP Mocking   Icons   IDE   IDE Plugins   Image Croppers   Image Loaders   Image Pickers   Image Processing   Image Views   Instrumentation   Intents   Job Schedulers   JSON   Keyboard   Kotlin   Layouts   Library Demos   List View   List Views   Localization   Location   Lock Patterns   Logcat   Logging   Mails   Maps   Markdown   Mathematics   Maven Plugins   MBaaS   Media   Menus   Messaging   MIME   Mobile Web   Native Image   Navigation   NDK   Networking   NFC   NoSQL   Number Pickers   OAuth   Object Mocking   OCR Engines   OpenGL   ORM   Other Pickers   Parallax List   Parcelables   Particle Systems   Password Inputs   PDF   Permissions   Physics Engines   Platforms   Plugin Frameworks   Preferences   Progress Indicators   ProGuard   Properties   Protocol Buffer   Pull To   Purchases   Push/Pull   QR Codes   Quick Return   Radio Buttons   Range Bars   Ratings   Recycler Views   Resources   REST   Ripple Effects   RSS   Screenshots   Scripting   Scroll Views   SDK   Search Inputs   Security   Sensors   Services   Showcase Views   Signatures   Sliding Panels   Snackbars   SOAP   Social Networks   Spannable   Spinners   Splash Screens   SSH   Static Analysis   Status Bars   Styling   SVG   System   Tags   Task Managers   TDD &   Template Engines   Testing   Testing Tools   Text Formatting   Text Views   Text Watchers   Text-to   Toasts   Toolkits For   Tools   Tooltips   Trainings   TV   Twitter   Updaters   USB   User Stories   Utils   Validation   Video   View Adapters   View Pagers   Views   Watch Face   Wearable Data   Wearables   Weather   Web Tools   Web Views   WebRTC   WebSockets   Wheel Widgets   Wi-Fi   Widgets   Windows   Wizards   XML   XMPP   YAML   ZIP Codes