Interface ClientHttpConnectorBuilder<T extends ClientHttpConnector>

Type Parameters:
T - the ClientHttpConnector 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.

@FunctionalInterface public interface ClientHttpConnectorBuilder<T extends ClientHttpConnector>
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