Uses of Class
software.amazon.awssdk.core.internal.http.HttpClientDependencies
Packages that use HttpClientDependencies
Package
Description
-
Uses of HttpClientDependencies in software.amazon.awssdk.core.internal.http
Methods in software.amazon.awssdk.core.internal.http that return HttpClientDependenciesModifier and TypeMethodDescriptionHttpClientDependencies.Builder.build()AmazonAsyncHttpClient.RequestExecutionBuilder.httpClientDependencies()AmazonSyncHttpClient.RequestExecutionBuilder.httpClientDependencies()Methods in software.amazon.awssdk.core.internal.http with parameters of type HttpClientDependenciesModifier and TypeMethodDescriptionAmazonAsyncHttpClient.RequestExecutionBuilder.httpClientDependencies(HttpClientDependencies httpClientDependencies) AmazonSyncHttpClient.RequestExecutionBuilder.httpClientDependencies(HttpClientDependencies httpClientDependencies) -
Uses of HttpClientDependencies in software.amazon.awssdk.core.internal.http.pipeline
Methods in software.amazon.awssdk.core.internal.http.pipeline that return types with arguments of type HttpClientDependenciesModifier and TypeMethodDescriptionstatic <InputT,OutputT>
Function<HttpClientDependencies,RequestPipeline<CompletableFuture<InputT>, CompletableFuture<OutputT>>> RequestPipelineBuilder.async(Function<HttpClientDependencies, RequestPipeline<InputT, OutputT>> pipelineFactory) Convert a synchronousRequestPipelinefactory into a factory that produces a version of the RequestPipeline that accepts a CompletableFuture and returns a CompletableFuture.static <InputT,OutputT>
Function<HttpClientDependencies,RequestPipeline<CompletableFuture<InputT>, CompletableFuture<OutputT>>> RequestPipelineBuilder.async(Supplier<RequestPipeline<InputT, OutputT>> pipelineFactory) A version ofRequestPipelineBuilder.async(Function)that takes aSupplierMethods in software.amazon.awssdk.core.internal.http.pipeline with parameters of type HttpClientDependenciesModifier and TypeMethodDescriptionRequestPipelineBuilder.build(HttpClientDependencies dependencies) Construct theRequestPipelinewith the currently configured stages.Method parameters in software.amazon.awssdk.core.internal.http.pipeline with type arguments of type HttpClientDependenciesModifier and TypeMethodDescriptionstatic <InputT,OutputT>
Function<HttpClientDependencies,RequestPipeline<CompletableFuture<InputT>, CompletableFuture<OutputT>>> RequestPipelineBuilder.async(Function<HttpClientDependencies, RequestPipeline<InputT, OutputT>> pipelineFactory) Convert a synchronousRequestPipelinefactory into a factory that produces a version of the RequestPipeline that accepts a CompletableFuture and returns a CompletableFuture.static <InputT,OutputT>
RequestPipelineBuilder<InputT,OutputT> RequestPipelineBuilder.first(Function<HttpClientDependencies, RequestPipeline<InputT, OutputT>> pipelineFactory) Factory method to create aRequestPipelineBuilderwith an initial pipeline stage.<NewOutputT>
RequestPipelineBuilder<InputT,NewOutputT> RequestPipelineBuilder.then(Function<HttpClientDependencies, RequestPipeline<OutputT, NewOutputT>> pipelineFactory) Factory method to chain the currentRequestPipelineBuilderwith another pipeline stage.<NewInputT,NewOutputT>
RequestPipelineBuilder<NewInputT,NewOutputT> RequestPipelineBuilder.wrappedWith(BiFunction<HttpClientDependencies, RequestPipeline<InputT, OutputT>, RequestPipeline<NewInputT, NewOutputT>> wrappedFactory) Factory method to wrap the currentRequestPipelineBuilderwith another pipeline stage. -
Uses of HttpClientDependencies in software.amazon.awssdk.core.internal.http.pipeline.stages
Constructors in software.amazon.awssdk.core.internal.http.pipeline.stages with parameters of type HttpClientDependenciesModifierConstructorDescriptionApiCallAttemptTimeoutTrackingStage(HttpClientDependencies dependencies, RequestPipeline<SdkHttpFullRequest, Response<OutputT>> wrapped) ApiCallTimeoutTrackingStage(HttpClientDependencies dependencies, RequestPipeline<SdkHttpFullRequest, Response<OutputT>> wrapped) ApplyUserAgentStage(HttpClientDependencies dependencies) AsyncApiCallTimeoutTrackingStage(HttpClientDependencies dependencies, RequestPipeline<SdkHttpFullRequest, CompletableFuture<OutputT>> requestPipeline) AsyncRetryableStage(TransformingAsyncResponseHandler<Response<OutputT>> responseHandler, HttpClientDependencies dependencies, RequestPipeline<SdkHttpFullRequest, CompletableFuture<Response<OutputT>>> requestPipeline) AsyncSigningStage(HttpClientDependencies dependencies) CompressRequestStage(HttpClientDependencies dependencies) MakeAsyncHttpRequestStage(TransformingAsyncResponseHandler<Response<OutputT>> responseHandler, HttpClientDependencies dependencies) MakeHttpRequestStage(HttpClientDependencies dependencies) MergeCustomHeadersStage(HttpClientDependencies dependencies) RetryableStage(HttpClientDependencies dependencies, RequestPipeline<SdkHttpFullRequest, Response<OutputT>> requestPipeline) SigningStage(HttpClientDependencies dependencies) TimeoutExceptionHandlingStage(HttpClientDependencies dependencies, RequestPipeline<SdkHttpFullRequest, Response<OutputT>> requestPipeline) -
Uses of HttpClientDependencies in software.amazon.awssdk.core.internal.http.pipeline.stages.utils
Constructors in software.amazon.awssdk.core.internal.http.pipeline.stages.utils with parameters of type HttpClientDependenciesModifierConstructorDescriptionRetryableStageHelper(SdkHttpFullRequest request, RequestExecutionContext context, HttpClientDependencies dependencies)