com.koushikdutta.async.http
Class AsyncHttpClient.RequestCallbackBase<T>

java.lang.Object
  extended by com.koushikdutta.async.http.AsyncHttpClient.RequestCallbackBase<T>
All Implemented Interfaces:
ResultCallback<AsyncHttpResponse,T>, RequestCallback<T>
Direct Known Subclasses:
AsyncHttpClient.DownloadCallback, AsyncHttpClient.FileCallback, AsyncHttpClient.JSONObjectCallback, AsyncHttpClient.StringCallback
Enclosing class:
AsyncHttpClient

public abstract static class AsyncHttpClient.RequestCallbackBase<T>
extends java.lang.Object
implements RequestCallback<T>


Constructor Summary
AsyncHttpClient.RequestCallbackBase()
           
 
Method Summary
 void onConnect(AsyncHttpResponse response)
           
 void onProgress(AsyncHttpResponse response, int downloaded, int total)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 
Methods inherited from interface com.koushikdutta.async.callback.ResultCallback
onCompleted
 

Constructor Detail

AsyncHttpClient.RequestCallbackBase

public AsyncHttpClient.RequestCallbackBase()
Method Detail

onProgress

public void onProgress(AsyncHttpResponse response,
                       int downloaded,
                       int total)
Specified by:
onProgress in interface RequestCallback<T>

onConnect

public void onConnect(AsyncHttpResponse response)
Specified by:
onConnect in interface RequestCallback<T>