Uses of Interface
software.amazon.awssdk.core.internal.http.TransformingAsyncResponseHandler
-
-
Uses of TransformingAsyncResponseHandler in software.amazon.awssdk.core.internal.http
Classes in software.amazon.awssdk.core.internal.http that implement TransformingAsyncResponseHandler Modifier and Type Class Description classIdempotentAsyncResponseHandler<T,R>Wrapper for aTransformingAsyncResponseHandlerthat allows attachment to an external scope and given a way of evaluating whether that scope has changed or not will only allow prepare() to be called on its delegate once per state change and will cache and reserve the future that is returned by the delegate the rest of the time.Methods in software.amazon.awssdk.core.internal.http with parameters of type TransformingAsyncResponseHandler Modifier and Type Method Description static <T,R>
IdempotentAsyncResponseHandler<T,R>IdempotentAsyncResponseHandler. create(TransformingAsyncResponseHandler<T> wrappedHandler, Supplier<R> preparedScopeSupplier, BiPredicate<R,R> scopeInRangePredicate)Creates a new wrappedTransformingAsyncResponseHandler<OutputT> CompletableFuture<OutputT>AmazonAsyncHttpClient.RequestExecutionBuilder. execute(TransformingAsyncResponseHandler<Response<OutputT>> responseHandler)Executes the request with the given configuration. -
Uses of TransformingAsyncResponseHandler in software.amazon.awssdk.core.internal.http.async
Classes in software.amazon.awssdk.core.internal.http.async that implement TransformingAsyncResponseHandler Modifier and Type Class Description classAsyncAfterTransmissionInterceptorCallingResponseHandler<T>Async response handler decorator to run interceptors after response is received.classAsyncResponseHandler<T>Response handler for asynchronous non-streaming operations.classAsyncStreamingResponseHandler<OutputT extends SdkResponse,ReturnT>Response handler for asynchronous streaming operations.classCombinedResponseAsyncHttpResponseHandler<OutputT>Detects whether the response succeeded or failed by just checking the HTTP status and delegates to appropriate async response handler.classFilterTransformingAsyncHttpResponseHandler<ResultT>Decorator class that simply delegates to the wrappedTransformingAsyncResponseHandler.Constructors in software.amazon.awssdk.core.internal.http.async with parameters of type TransformingAsyncResponseHandler Constructor Description AsyncAfterTransmissionInterceptorCallingResponseHandler(TransformingAsyncResponseHandler<T> delegate, ExecutionContext context)CombinedResponseAsyncHttpResponseHandler(TransformingAsyncResponseHandler<OutputT> successResponseHandler, TransformingAsyncResponseHandler<? extends SdkException> errorResponseHandler)FilterTransformingAsyncHttpResponseHandler(TransformingAsyncResponseHandler<ResultT> delegate) -
Uses of TransformingAsyncResponseHandler in software.amazon.awssdk.core.internal.http.pipeline.stages
Constructors in software.amazon.awssdk.core.internal.http.pipeline.stages with parameters of type TransformingAsyncResponseHandler Constructor Description AsyncRetryableStage(TransformingAsyncResponseHandler<Response<OutputT>> responseHandler, HttpClientDependencies dependencies, RequestPipeline<SdkHttpFullRequest,CompletableFuture<Response<OutputT>>> requestPipeline)MakeAsyncHttpRequestStage(TransformingAsyncResponseHandler<Response<OutputT>> responseHandler, HttpClientDependencies dependencies)
-