All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.metamx.http.client.AbstractHttpClient Maven / Gradle / Ivy

There is a newer version: 1.3.8
Show newest version
package com.metamx.http.client;

import com.google.common.util.concurrent.ListenableFuture;
import com.metamx.http.client.response.HttpResponseHandler;

public abstract class AbstractHttpClient implements HttpClient
{
  @Override
  public  ListenableFuture go(
      final Request request,
      final HttpResponseHandler handler
  )
  {
    return go(request, handler, null);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy