Skip to content

Commit

Permalink
Merge Job into Call. CallTest = AsyncApiTest + SyncApiTest.
Browse files Browse the repository at this point in the history
  • Loading branch information
Adrian Cole committed Apr 25, 2014
1 parent f4c83e8 commit 63d4dfa
Show file tree
Hide file tree
Showing 14 changed files with 728 additions and 689 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ class OkHttpAsync implements HttpClient {

@Override public void enqueue(URL url) throws Exception {
requestsInFlight.incrementAndGet();
client.call(new Request.Builder().tag(System.nanoTime()).url(url).build()).execute(callback);
client.newCall(new Request.Builder().tag(System.nanoTime()).url(url).build()).execute(callback);
}

@Override public synchronized boolean acceptingJobs() {
Expand Down
2 changes: 1 addition & 1 deletion okcurl/src/main/java/com/squareup/okhttp/curl/Main.java
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ private static String protocols() {
client = createClient();
Request request = createRequest();
try {
Response response = client.execute(request);
Response response = client.newCall(request).execute();
if (showHeaders) {
System.out.println(StatusLine.get(response));
Headers headers = response.headers();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public OkApacheClient(OkHttpClient client) {
@Override public HttpResponse execute(HttpHost host, HttpRequest request, HttpContext context)
throws IOException {
Request okRequest = transformRequest(request);
Response okResponse = client.execute(okRequest);
Response okResponse = client.newCall(okRequest).execute();
return transformResponse(okResponse);
}

Expand Down
Loading

0 comments on commit 63d4dfa

Please sign in to comment.