Record Class ClientHttpConnectorSettings

java.lang.Object
java.lang.Record
org.springframework.boot.http.client.reactive.ClientHttpConnectorSettings
Record Components:
redirects - the follow redirect strategy to use or null to redirect whenever the underlying library allows it
connectTimeout - the connect timeout
readTimeout - the read timeout
sslBundle - the SSL bundle providing SSL configuration

public record ClientHttpConnectorSettings(HttpRedirects redirects, Duration connectTimeout, Duration readTimeout, SslBundle sslBundle) extends Record
Settings that can be applied when creating a ClientHttpConnector.
Since:
3.5.0
Author:
Phillip Webb
See Also: