Interface AsyncHttpClient<C>

All Known Implementing Classes:
AsyncHttpClientImpl

public interface AsyncHttpClient<C>
  • Method Summary

    Modifier and Type Method Description
    Future<org.apache.http.HttpResponse> delete​(String methodName, org.apache.http.client.methods.HttpDelete httpDelete, org.apache.http.concurrent.FutureCallback<org.apache.http.HttpResponse> callback)  
    Future<org.apache.http.HttpResponse> delete​(String methodName, org.apache.http.client.methods.HttpDelete httpDelete, org.apache.http.concurrent.FutureCallback<org.apache.http.HttpResponse> callback, C client)  
    Future<org.apache.http.HttpResponse> get​(String methodName, org.apache.http.client.methods.HttpGet httpGet, org.apache.http.concurrent.FutureCallback<org.apache.http.HttpResponse> callback)  
    Future<org.apache.http.HttpResponse> get​(String methodName, org.apache.http.client.methods.HttpGet httpGet, org.apache.http.concurrent.FutureCallback<org.apache.http.HttpResponse> callback, C client)  
    Future<org.apache.http.HttpResponse> post​(String methodName, org.apache.http.client.methods.HttpPost httpPost, org.apache.http.concurrent.FutureCallback<org.apache.http.HttpResponse> callback)  
    Future<org.apache.http.HttpResponse> post​(String methodName, org.apache.http.client.methods.HttpPost httpPost, org.apache.http.concurrent.FutureCallback<org.apache.http.HttpResponse> callback, C client)  
    Future<org.apache.http.HttpResponse> put​(String methodName, org.apache.http.client.methods.HttpPut httpPut, org.apache.http.concurrent.FutureCallback<org.apache.http.HttpResponse> callback)  
    Future<org.apache.http.HttpResponse> put​(String methodName, org.apache.http.client.methods.HttpPut httpPut, org.apache.http.concurrent.FutureCallback<org.apache.http.HttpResponse> callback, C client)  
  • Method Details

    • post

      Future<org.apache.http.HttpResponse> post​(String methodName, org.apache.http.client.methods.HttpPost httpPost, org.apache.http.concurrent.FutureCallback<org.apache.http.HttpResponse> callback, C client)
    • post

      Future<org.apache.http.HttpResponse> post​(String methodName, org.apache.http.client.methods.HttpPost httpPost, org.apache.http.concurrent.FutureCallback<org.apache.http.HttpResponse> callback)
    • get

      Future<org.apache.http.HttpResponse> get​(String methodName, org.apache.http.client.methods.HttpGet httpGet, org.apache.http.concurrent.FutureCallback<org.apache.http.HttpResponse> callback, C client)
    • get

      Future<org.apache.http.HttpResponse> get​(String methodName, org.apache.http.client.methods.HttpGet httpGet, org.apache.http.concurrent.FutureCallback<org.apache.http.HttpResponse> callback)
    • delete

      Future<org.apache.http.HttpResponse> delete​(String methodName, org.apache.http.client.methods.HttpDelete httpDelete, org.apache.http.concurrent.FutureCallback<org.apache.http.HttpResponse> callback, C client)
    • delete

      Future<org.apache.http.HttpResponse> delete​(String methodName, org.apache.http.client.methods.HttpDelete httpDelete, org.apache.http.concurrent.FutureCallback<org.apache.http.HttpResponse> callback)
    • put

      Future<org.apache.http.HttpResponse> put​(String methodName, org.apache.http.client.methods.HttpPut httpPut, org.apache.http.concurrent.FutureCallback<org.apache.http.HttpResponse> callback, C client)
    • put

      Future<org.apache.http.HttpResponse> put​(String methodName, org.apache.http.client.methods.HttpPut httpPut, org.apache.http.concurrent.FutureCallback<org.apache.http.HttpResponse> callback)