We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b9ebb54 commit 78f6d9eCopy full SHA for 78f6d9e
README.md
@@ -72,8 +72,8 @@ import org.asynchttpclient.*;
72
Future<Response> whenResponse = asyncHttpClient.prepareGet("http://www.example.com/").execute();
73
74
// unbound
75
-Request request = get("http://www.example.com/");
76
-Future<Response> whenResponse = asyncHttpClient.execute(request).execute();
+Request request = get("http://www.example.com/").build();
+Future<Response> whenResponse = asyncHttpClient.execute(request);
77
```
78
79
#### Setting Request Body
0 commit comments