org.http4s.blaze.client

Type members

Classlikes

object BlazeClient

Blaze client implementation

Blaze client implementation

sealed abstract class BlazeClientBuilder[F[_]] extends BlazeBackendBuilder[Client[F]] with BackendBuilder[F, Client[F]]

Configure and obtain a BlazeClient

Configure and obtain a BlazeClient

Value Params
asynchronousChannelGroup

custom AsynchronousChannelGroup to use other than the system default

bufferSize

internal buffer size of the blaze client

channelOptions

custom socket options

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.

connectTimeout

Duration a connection attempt times out after

customDnsResolver

customDnsResolver to use other than the system default

executionContext

custom executionContext to run async computations.

idleTimeout

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

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

parserMode

lenient or strict parsing mode. The lenient mode will accept illegal chars but replaces them with � (0xFFFD)

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.

scheduler

execution scheduler

sslContext

Some custom SSLContext, or None if the default SSL context is to be lazily instantiated.

userAgent

optional custom user agent header

Companion
object
Companion
class
final case class NoConnectionAllowedException(key: RequestKey) extends IllegalArgumentException
sealed abstract class ParserMode extends Product with Serializable
Companion
object
object ParserMode
Companion
class
final case class WaitQueueFullFailure() extends RuntimeException