BlazeClientConfig

@deprecated("Use BlazeClientBuilder", "0.19.0-M2") final case class BlazeClientConfig(responseHeaderTimeout: Duration, idleTimeout: Duration, requestTimeout: Duration, userAgent: Option[`User-Agent`], maxTotalConnections: Int, maxWaitQueueLimit: Int, maxConnectionsPerRequestKey: RequestKey => Int, sslContext: Option[SSLContext], @deprecatedName(scala.Symbol.apply("endpointAuthentication")) checkEndpointIdentification: Boolean, maxResponseLineSize: Int, maxHeaderLength: Int, maxChunkSize: Int, chunkBufferMaxSize: Int, lenientParser: Boolean, bufferSize: Int, executionContext: ExecutionContext, group: Option[AsynchronousChannelGroup])

Config object for the blaze clients

Config object for the blaze clients

Value Params
bufferSize

internal buffer size of the blaze client

checkEndpointIdentification

require endpoint identification for secure requests according to RFC 2818, Section 3.1. If the certificate presented does not match the hostname of the request, the request fails with a CertificateException. This setting does not affect checking the validity of the cert via the sslContext's trust managers.

chunkBufferMaxSize

Size of the buffer that is used when Content-Length header is not specified.

executionContext

custom executionContext to run async computations.

group

custom AsynchronousChannelGroup to use other than the system default

idleTimeout

duration that a connection can wait without traffic being read or written before timeout

lenientParser

a lenient parser will accept illegal chars but replaces them with � (0xFFFD)

maxChunkSize

maximum size of chunked content chunks

maxConnectionsPerRequestKey

Map of RequestKey to number of max connections

maxHeaderLength

maximum length of headers

maxResponseLineSize

maximum length of the request line

maxTotalConnections

maximum connections the client will have at any specific time

maxWaitQueueLimit

maximum number requests waiting for a connection at any specific time

requestTimeout

maximum duration from the submission of a request through reading the body before a timeout.

responseHeaderTimeout

duration between the submission of a request and the completion of the response header. Does not include time to read the response body.

sslContext

optional custom SSLContext to use to replace the default, SSLContext.getDefault.

userAgent

optional custom user agent header

Companion
object
Deprecated
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Deprecated methods

@deprecated("Parameter has been renamed to `checkEndpointIdentification`", "0.16")
Deprecated

Inherited methods

def productElementNames: Iterator[String]
Inherited from
Product
def productIterator: Iterator[Any]
Inherited from
Product