Uses of Interface
com.ning.http.client.Request

Packages that use Request
com.ning.http.client   
com.ning.http.client.filter   
com.ning.http.client.oauth   
com.ning.http.client.providers.apache   
com.ning.http.client.providers.jdk   
com.ning.http.client.providers.netty   
com.ning.http.client.resumable   
com.ning.http.util   
 

Uses of Request in com.ning.http.client
 

Methods in com.ning.http.client that return Request
 Request RequestBuilderBase.build()
           
 Request RequestBuilder.build()
           
 Request AsyncHttpClient.BoundRequestBuilder.build()
           
 

Methods in com.ning.http.client with parameters of type Request
 void SignatureCalculator.calculateAndAddSignature(String url, Request request, RequestBuilderBase<?> requestBuilder)
          Method called when RequestBuilder.build() method is called.
<T> ListenableFuture<T>
AsyncHttpProvider.execute(Request request, AsyncHandler<T> handler)
          Execute the request and invoke the AsyncHandler when the response arrive.
 ListenableFuture<Response> AsyncHttpClient.executeRequest(Request request)
          Execute an HTTP request.
<T> ListenableFuture<T>
AsyncHttpClient.executeRequest(Request request, AsyncHandler<T> handler)
          Execute an HTTP request.
 AsyncHttpClient.BoundRequestBuilder AsyncHttpClient.prepareRequest(Request request)
          Construct a AsyncHttpClient.BoundRequestBuilder using a Request
protected  AsyncHttpClient.BoundRequestBuilder AsyncHttpClient.requestBuilder(Request prototype)
           
 

Constructors in com.ning.http.client with parameters of type Request
RequestBuilder(Request prototype)
           
RequestBuilderBase(Class<T> derived, Request prototype)
           
 

Uses of Request in com.ning.http.client.filter
 

Methods in com.ning.http.client.filter that return Request
 Request FilterContext.getRequest()
          Return the original or decorated Request
 Request FilterContext.FilterContextBuilder.getRequest()
           
 

Methods in com.ning.http.client.filter with parameters of type Request
 FilterContext.FilterContextBuilder FilterContext.FilterContextBuilder.request(Request request)
           
 

Constructors in com.ning.http.client.filter with parameters of type Request
FilterContext(AsyncHandler<T> asyncHandler, Request request)
          Deprecated. use FilterContext.FilterContextBuilder instead
FilterContext(AsyncHandler<T> asyncHandler, Request request, boolean replayRequest)
          Deprecated. use FilterContext.FilterContextBuilder instead
FilterContext(AsyncHandler<T> asyncHandler, Request request, HttpResponseStatus responseStatus)
          Deprecated. use FilterContext.FilterContextBuilder instead
FilterContext(AsyncHandler<T> asyncHandler, Request request, IOException ioException)
          Deprecated. use FilterContext.FilterContextBuilder instead
 

Uses of Request in com.ning.http.client.oauth
 

Methods in com.ning.http.client.oauth with parameters of type Request
 void OAuthSignatureCalculator.calculateAndAddSignature(String baseURL, Request request, RequestBuilderBase<?> requestBuilder)
           
 

Uses of Request in com.ning.http.client.providers.apache
 

Methods in com.ning.http.client.providers.apache that return Request
 Request ApacheResponseFuture.getRequest()
           
 

Methods in com.ning.http.client.providers.apache with parameters of type Request
<T> ListenableFuture<T>
ApacheAsyncHttpProvider.execute(Request request, AsyncHandler<T> handler)
           
 

Constructors in com.ning.http.client.providers.apache with parameters of type Request
ApacheAsyncHttpProvider.ApacheClientRunnable(Request request, AsyncHandler<T> asyncHandler, org.apache.commons.httpclient.HttpMethodBase method, ApacheResponseFuture<T> future, org.apache.commons.httpclient.HttpClient httpClient)
           
ApacheResponseFuture(AsyncHandler<V> asyncHandler, int responseTimeoutInMs, Request request, org.apache.commons.httpclient.HttpMethodBase method)
           
 

Uses of Request in com.ning.http.client.providers.jdk
 

Methods in com.ning.http.client.providers.jdk with parameters of type Request
<T> ListenableFuture<T>
JDKAsyncHttpProvider.execute(Request request, AsyncHandler<T> handler)
           
<T> ListenableFuture<T>
JDKAsyncHttpProvider.execute(Request request, AsyncHandler<T> handler, ListenableFuture<?> future)
           
 

Uses of Request in com.ning.http.client.providers.netty
 

Methods in com.ning.http.client.providers.netty that return Request
protected  Request NettyResponseFuture.getRequest()
           
 

Methods in com.ning.http.client.providers.netty with parameters of type Request
protected static org.jboss.netty.handler.codec.http.HttpRequest NettyAsyncHttpProvider.buildRequest(AsyncHttpClientConfig config, Request request, URI uri, boolean allowConnect, org.jboss.netty.buffer.ChannelBuffer buffer)
           
<T> ListenableFuture<T>
NettyAsyncHttpProvider.execute(Request request, AsyncHandler<T> asyncHandler)
           
static
<T> NettyResponseFuture<T>
NettyAsyncHttpProvider.newFuture(URI uri, Request request, AsyncHandler<T> asyncHandler, org.jboss.netty.handler.codec.http.HttpRequest nettyRequest, AsyncHttpClientConfig config, NettyAsyncHttpProvider provider)
           
 void NettyResponseFuture.setRequest(Request request)
           
 

Constructors in com.ning.http.client.providers.netty with parameters of type Request
NettyResponseFuture(URI uri, Request request, AsyncHandler<V> asyncHandler, org.jboss.netty.handler.codec.http.HttpRequest nettyRequest, int responseTimeoutInMs, NettyAsyncHttpProvider asyncHttpProvider)
           
 

Uses of Request in com.ning.http.client.resumable
 

Methods in com.ning.http.client.resumable that return Request
 Request ResumableAsyncHandler.adjustRequestRange(Request request)
          Invoke this API if you want to set the Range header on your Request based on the last valid bytes position.
 

Methods in com.ning.http.client.resumable with parameters of type Request
 Request ResumableAsyncHandler.adjustRequestRange(Request request)
          Invoke this API if you want to set the Range header on your Request based on the last valid bytes position.
 

Uses of Request in com.ning.http.util
 

Methods in com.ning.http.util with parameters of type Request
static boolean ProxyUtils.avoidProxy(ProxyServer proxyServer, Request request)
          Checks whether proxy should be used according to nonProxyHosts settings of it, or we want to go directly to target host.
 



Copyright © 2011. All Rights Reserved.