Uses of Interface
software.amazon.awssdk.core.http.HttpResponseHandler
-
-
Uses of HttpResponseHandler in software.amazon.awssdk.core.client.handler
Classes in software.amazon.awssdk.core.client.handler that implement HttpResponseHandler Modifier and Type Class Description classAttachHttpMetadataResponseHandler<T extends SdkResponse>DecorateHttpResponseHandlerto attachSdkHttpResponseto the response object.Methods in software.amazon.awssdk.core.client.handler that return HttpResponseHandler Modifier and Type Method Description HttpResponseHandler<Response<OutputT>>ClientExecutionParams. getCombinedResponseHandler()Non-streaming requests can use handlers that handle both error and success as a single handler instead of submitting individual success and error handlers.HttpResponseHandler<? extends SdkException>ClientExecutionParams. getErrorResponseHandler()HttpResponseHandler<OutputT>ClientExecutionParams. getResponseHandler()Methods in software.amazon.awssdk.core.client.handler with parameters of type HttpResponseHandler Modifier and Type Method Description ClientExecutionParams<InputT,OutputT>ClientExecutionParams. withCombinedResponseHandler(HttpResponseHandler<Response<OutputT>> combinedResponseHandler)ClientExecutionParams<InputT,OutputT>ClientExecutionParams. withErrorResponseHandler(HttpResponseHandler<? extends SdkException> errorResponseHandler)ClientExecutionParams<InputT,OutputT>ClientExecutionParams. withResponseHandler(HttpResponseHandler<OutputT> responseHandler)Constructors in software.amazon.awssdk.core.client.handler with parameters of type HttpResponseHandler Constructor Description AttachHttpMetadataResponseHandler(HttpResponseHandler<T> delegate) -
Uses of HttpResponseHandler in software.amazon.awssdk.core.http
Classes in software.amazon.awssdk.core.http that implement HttpResponseHandler Modifier and Type Class Description classMetricCollectingHttpResponseHandler<T>An implementation ofHttpResponseHandlerthat publishes the time it took to execute {Fields in software.amazon.awssdk.core.http declared as HttpResponseHandler Modifier and Type Field Description HttpResponseHandler<T>MetricCollectingHttpResponseHandler. delegateToTimeMethods in software.amazon.awssdk.core.http with parameters of type HttpResponseHandler Modifier and Type Method Description static <T> MetricCollectingHttpResponseHandler<T>MetricCollectingHttpResponseHandler. create(software.amazon.awssdk.metrics.SdkMetric<? super Duration> durationMetric, HttpResponseHandler<T> delegateToTime) -
Uses of HttpResponseHandler in software.amazon.awssdk.core.internal.http
Classes in software.amazon.awssdk.core.internal.http that implement HttpResponseHandler Modifier and Type Class Description classCombinedResponseHandler<OutputT>Unmarshalls an HTTP response into either a successful response POJO, or into a (possibly modeled) exception based on the status code of the HTTP response.Methods in software.amazon.awssdk.core.internal.http with parameters of type HttpResponseHandler Modifier and Type Method Description <OutputT> OutputTAmazonSyncHttpClient.RequestExecutionBuilder. execute(HttpResponseHandler<Response<OutputT>> combinedResponseHandler)Executes the request with the given configuration.Constructors in software.amazon.awssdk.core.internal.http with parameters of type HttpResponseHandler Constructor Description CombinedResponseHandler(HttpResponseHandler<OutputT> successResponseHandler, HttpResponseHandler<? extends SdkException> errorResponseHandler) -
Uses of HttpResponseHandler in software.amazon.awssdk.core.internal.http.async
Methods in software.amazon.awssdk.core.internal.http.async with parameters of type HttpResponseHandler Modifier and Type Method Description voidAsyncStreamingResponseHandler. responseHandler(HttpResponseHandler<OutputT> responseHandler)Constructors in software.amazon.awssdk.core.internal.http.async with parameters of type HttpResponseHandler Constructor Description AsyncResponseHandler(HttpResponseHandler<T> responseHandler, Function<software.amazon.awssdk.http.SdkHttpFullResponse,software.amazon.awssdk.http.SdkHttpFullResponse> crc32Validator, ExecutionAttributes executionAttributes) -
Uses of HttpResponseHandler in software.amazon.awssdk.core.internal.http.pipeline.stages
Constructors in software.amazon.awssdk.core.internal.http.pipeline.stages with parameters of type HttpResponseHandler Constructor Description HandleResponseStage(HttpResponseHandler<Response<OutputT>> responseHandler)
-