Interface ClientHttpConnectorBuilder<T extends ClientHttpConnector>
- Type Parameters:
T
- theClientHttpConnector
type
- All Known Implementing Classes:
HttpComponentsClientHttpConnectorBuilder
,JdkClientHttpConnectorBuilder
,JettyClientHttpConnectorBuilder
,ReactorClientHttpConnectorBuilder
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Interface used to build a fully configured
ClientHttpConnector
. Builders for
Reactor
, Jetty
, Apache
HTTP Components
and JDK
can be obtained using the factory methods on
this interface. The of(Class)
method may be used to instantiate based on the
connector type.- Since:
- 3.5.0
- Author:
- Phillip Webb
-
Method Summary
Modifier and TypeMethodDescriptiondefault T
build()
Build a default configuredClientHttpConnectorBuilder
.build
(ClientHttpConnectorSettings settings) Build a fully configuredClientHttpConnector
, applying the givensettings
if they are provided.static ClientHttpConnectorBuilder<? extends ClientHttpConnector>
detect()
Detect the most suitableClientHttpConnectorBuilder
based on the classpath.static ClientHttpConnectorBuilder<? extends ClientHttpConnector>
detect
(ClassLoader classLoader) Detect the most suitableClientHttpConnectorBuilder
based on the classpath.Return aHttpComponentsClientHttpConnectorBuilder
that can be used to build aHttpComponentsClientHttpConnector
.jdk()
Return aJdkClientHttpConnectorBuilder
that can be used to build aJdkClientHttpConnector
.jetty()
Return aJettyClientHttpConnectorBuilder
that can be used to build aJettyClientHttpConnector
.static <T extends ClientHttpConnector>
ClientHttpConnectorBuilder<T>Return a newClientHttpConnectorBuilder
for the givenrequestFactoryType
.reactor()
Return aReactorClientHttpConnectorBuilder
that can be used to build aReactorClientHttpConnector
.default ClientHttpConnectorBuilder<T>
withCustomizer
(Consumer<T> customizer) Return a newClientHttpConnectorBuilder
that applies the given customizer to theClientHttpConnector
after it has been built.default ClientHttpConnectorBuilder<T>
withCustomizers
(Collection<Consumer<T>> customizers) Return a newClientHttpConnectorBuilder
that applies the given customizers to theClientHttpConnector
after it has been built.
-
Method Details
-
build
Build a default configuredClientHttpConnectorBuilder
.- Returns:
- a default configured
ClientHttpConnectorBuilder
.
-
build
Build a fully configuredClientHttpConnector
, applying the givensettings
if they are provided.- Parameters:
settings
- the settings to apply ornull
- Returns:
- a fully configured
ClientHttpConnector
.
-
withCustomizer
Return a newClientHttpConnectorBuilder
that applies the given customizer to theClientHttpConnector
after it has been built.- Parameters:
customizer
- the customizers to apply- Returns:
- a new
ClientHttpConnectorBuilder
instance
-
withCustomizers
Return a newClientHttpConnectorBuilder
that applies the given customizers to theClientHttpConnector
after it has been built.- Parameters:
customizers
- the customizers to apply- Returns:
- a new
ClientHttpConnectorBuilder
instance
-
httpComponents
Return aHttpComponentsClientHttpConnectorBuilder
that can be used to build aHttpComponentsClientHttpConnector
.- Returns:
- a new
HttpComponentsClientHttpConnectorBuilder
-
jetty
Return aJettyClientHttpConnectorBuilder
that can be used to build aJettyClientHttpConnector
.- Returns:
- a new
JettyClientHttpConnectorBuilder
-
reactor
Return aReactorClientHttpConnectorBuilder
that can be used to build aReactorClientHttpConnector
.- Returns:
- a new
ReactorClientHttpConnectorBuilder
-
jdk
Return aJdkClientHttpConnectorBuilder
that can be used to build aJdkClientHttpConnector
.- Returns:
- a new
JdkClientHttpConnectorBuilder
-
of
static <T extends ClientHttpConnector> ClientHttpConnectorBuilder<T> of(Class<T> clientHttpConnectorType) Return a newClientHttpConnectorBuilder
for the givenrequestFactoryType
. The following implementations are supported:- Type Parameters:
T
- theClientHttpConnector
type- Parameters:
clientHttpConnectorType
- theClientHttpConnector
type- Returns:
- a new
ClientHttpConnectorBuilder
-
detect
Detect the most suitableClientHttpConnectorBuilder
based on the classpath. The methods favors builders in the following order:- Returns:
- the most suitable
ClientHttpConnectorBuilder
for the classpath
-
detect
Detect the most suitableClientHttpConnectorBuilder
based on the classpath. The methods favors builders in the following order:- Parameters:
classLoader
- the class loader to use for detection- Returns:
- the most suitable
ClientHttpConnectorBuilder
for the classpath
-