Uses of Interface
org.springframework.http.client.AsyncClientHttpRequestFactory
Packages that use AsyncClientHttpRequestFactory Package Description org.springframework.http.client Contains an abstraction over client-side HTTP.org.springframework.http.client.support This package provides generic HTTP support classes, to be used by higher-level classes like RestTemplate.org.springframework.test.web.client Contains client-side REST testing support.org.springframework.web.client Core package of the client-side web support.Uses of AsyncClientHttpRequestFactory in org.springframework.http.client
Classes in org.springframework.http.client that implement AsyncClientHttpRequestFactory Modifier and Type Class Description classHttpComponentsAsyncClientHttpRequestFactoryDeprecated.as of Spring 5.0, with no direct replacementclassInterceptingAsyncClientHttpRequestFactoryDeprecated.as of Spring 5.0, with no direct replacementclassNetty4ClientHttpRequestFactoryDeprecated.as of Spring 5.0, in favor ofReactorClientHttpConnectorclassOkHttp3ClientHttpRequestFactoryClientHttpRequestFactoryimplementation that uses OkHttp 3.x to create requests.classSimpleClientHttpRequestFactoryClientHttpRequestFactoryimplementation that uses standard JDK facilities.Constructors in org.springframework.http.client with parameters of type AsyncClientHttpRequestFactory Constructor Description InterceptingAsyncClientHttpRequestFactory(AsyncClientHttpRequestFactory delegate, List<AsyncClientHttpRequestInterceptor> interceptors)Deprecated.Create new instance ofInterceptingAsyncClientHttpRequestFactorywith delegated request factory and list of interceptors.Uses of AsyncClientHttpRequestFactory in org.springframework.http.client.support
Methods in org.springframework.http.client.support that return AsyncClientHttpRequestFactory Modifier and Type Method Description AsyncClientHttpRequestFactoryAsyncHttpAccessor. getAsyncRequestFactory()Deprecated.Return the request factory that this accessor uses for obtainingHttpRequests.AsyncClientHttpRequestFactoryInterceptingAsyncHttpAccessor. getAsyncRequestFactory()Deprecated.Methods in org.springframework.http.client.support with parameters of type AsyncClientHttpRequestFactory Modifier and Type Method Description voidAsyncHttpAccessor. setAsyncRequestFactory(AsyncClientHttpRequestFactory asyncRequestFactory)Deprecated.Set the request factory that this accessor uses for obtainingHttpRequests.Uses of AsyncClientHttpRequestFactory in org.springframework.test.web.client
Classes in org.springframework.test.web.client that implement AsyncClientHttpRequestFactory Modifier and Type Class Description classMockMvcClientHttpRequestFactoryAClientHttpRequestFactoryfor requests executed viaMockMvc.Uses of AsyncClientHttpRequestFactory in org.springframework.web.client
Constructors in org.springframework.web.client with parameters of type AsyncClientHttpRequestFactory Constructor Description AsyncRestTemplate(AsyncClientHttpRequestFactory asyncRequestFactory)Deprecated.Create a new instance of theAsyncRestTemplateusing the givenAsyncClientHttpRequestFactory.AsyncRestTemplate(AsyncClientHttpRequestFactory asyncRequestFactory, ClientHttpRequestFactory syncRequestFactory)Deprecated.Creates a new instance of theAsyncRestTemplateusing the given asynchronous and synchronous request factories.AsyncRestTemplate(AsyncClientHttpRequestFactory requestFactory, RestTemplate restTemplate)Deprecated.Create a new instance of theAsyncRestTemplateusing the givenAsyncClientHttpRequestFactoryand synchronousRestTemplate.