Uses of Interface
org.apache.druid.java.util.http.client.response.HttpResponseHandler
-
Packages that use HttpResponseHandler Package Description org.apache.druid.frame.file org.apache.druid.java.util.http.client org.apache.druid.java.util.http.client.response -
-
Uses of HttpResponseHandler in org.apache.druid.frame.file
Classes in org.apache.druid.frame.file that implement HttpResponseHandler Modifier and Type Class Description classFrameFileHttpResponseHandlerAnHttpResponseHandlerthat streams data into aReadableByteChunksFrameChannel. -
Uses of HttpResponseHandler in org.apache.druid.java.util.http.client
Methods in org.apache.druid.java.util.http.client with parameters of type HttpResponseHandler Modifier and Type Method Description <Intermediate,Final>
com.google.common.util.concurrent.ListenableFuture<Final>AbstractHttpClient. go(Request request, HttpResponseHandler<Intermediate,Final> handler)<Intermediate,Final>
com.google.common.util.concurrent.ListenableFuture<Final>CredentialedHttpClient. go(Request request, HttpResponseHandler<Intermediate,Final> handler, org.joda.time.Duration requestReadTimeout)<Intermediate,Final>
com.google.common.util.concurrent.ListenableFuture<Final>HttpClient. go(Request request, HttpResponseHandler<Intermediate,Final> handler)Submit a request and process the response with the given response handler.<Intermediate,Final>
com.google.common.util.concurrent.ListenableFuture<Final>HttpClient. go(Request request, HttpResponseHandler<Intermediate,Final> handler, org.joda.time.Duration readTimeout)Submit a request and process the response with the given response handler.<Intermediate,Final>
com.google.common.util.concurrent.ListenableFuture<Final>NettyHttpClient. go(Request request, HttpResponseHandler<Intermediate,Final> handler, org.joda.time.Duration requestReadTimeout) -
Uses of HttpResponseHandler in org.apache.druid.java.util.http.client.response
Classes in org.apache.druid.java.util.http.client.response that implement HttpResponseHandler Modifier and Type Class Description classBytesFullResponseHandlerHttpResponseHandlerfor stream data of byte array type.classInputStreamFullResponseHandlerThis is a clone ofInputStreamResponseHandlerexcept that it retains HTTP status/response object in the response holder result.classInputStreamResponseHandlerclassObjectOrErrorResponseHandler<IntermediateType,FinalType>Response handler that delegates successful responses (2xx response codes) to some other handler, but returns errors (non-2xx response codes) as Strings.classSequenceInputStreamResponseHandlerA HTTP response handler which uses sequence input streams to create a final InputStream.classStatusResponseHandlerclassStringFullResponseHandlerHttpResponseHandlerfor stream data of string type.Constructors in org.apache.druid.java.util.http.client.response with parameters of type HttpResponseHandler Constructor Description ObjectOrErrorResponseHandler(HttpResponseHandler<IntermediateType,FinalType> okHandler)
-