sealed abstract class BlazeClientBuilder[F[_]] extends AnyRef
- Source
- BlazeClientBuilder.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- BlazeClientBuilder
- AnyRef
- Any
Implicitly
- by any2stringadd
- by StringFormat
- by Ensuring
- by ArrowAssoc
- Hide All
- Show All
Visibility
- Public
- All
Value Members
- def allocate(implicit F: ConcurrentEffect[F]): F[(Client[F], F[Unit])]
- val asynchronousChannelGroup: Option[AsynchronousChannelGroup]
- val bufferSize: Int
- def channelOption[A](socketOption: SocketOption[A]): Option[A]
- val channelOptions: ChannelOptions
- val checkEndpointIdentification: Boolean
- val executionContext: ExecutionContext
- val idleTimeout: Duration
- val maxChunkSize: Int
- val maxConnectionsPerRequestKey: (RequestKey) ⇒ Int
- val maxHeaderLength: Int
- val maxResponseLineSize: Int
- val maxTotalConnections: Int
- val maxWaitQueueLimit: Int
- val parserMode: ParserMode
- val requestTimeout: Duration
- def resource(implicit F: ConcurrentEffect[F]): Resource[F, Client[F]]
- val responseHeaderTimeout: Duration
- def socketKeepAlive: Option[Boolean]
- def socketReceiveBufferSize: Option[Int]
- def socketReuseAddress: Option[Boolean]
- def socketSendBufferSize: Option[Int]
- val sslContext: Option[SSLContext]
- def stream(implicit F: ConcurrentEffect[F]): Stream[F, Client[F]]
- def tcpNoDelay: Option[Boolean]
- val userAgent: Option[User-Agent]
- def withAsynchronousChannelGroup(asynchronousChannelGroup: AsynchronousChannelGroup): BlazeClientBuilder[F]
- def withAsynchronousChannelGroupOption(asynchronousChannelGroup: Option[AsynchronousChannelGroup]): BlazeClientBuilder[F]
- def withBufferSize(bufferSize: Int): BlazeClientBuilder[F]
- def withChannelOption[A](key: SocketOption[A], value: A): BlazeClientBuilder[F]
- def withChannelOptions(channelOptions: ChannelOptions): BlazeClientBuilder[F]
- def withCheckEndpointAuthentication(checkEndpointIdentification: Boolean): BlazeClientBuilder[F]
- def withDefaultChannelOption[A](key: SocketOption[A]): BlazeClientBuilder[F]
- def withDefaultSocketKeepAlive: BlazeClientBuilder[F]
- def withDefaultSocketReceiveBufferSize: BlazeClientBuilder[F]
- def withDefaultSocketReuseAddress: BlazeClientBuilder[F]
- def withDefaultSocketSendBufferSize: BlazeClientBuilder[F]
- def withDefaultTcpNoDelay: BlazeClientBuilder[F]
- def withExecutionContext(executionContext: ExecutionContext): BlazeClientBuilder[F]
- def withIdleTimeout(idleTimeout: Duration): BlazeClientBuilder[F]
- def withMaxChunkSize(maxChunkSize: Int): BlazeClientBuilder[F]
- def withMaxConnectionsPerRequestKey(maxConnectionsPerRequestKey: (RequestKey) ⇒ Int): BlazeClientBuilder[F]
- def withMaxResponseLineSize(maxResponseLineSize: Int): BlazeClientBuilder[F]
- def withMaxTotalConnections(maxTotalConnections: Int): BlazeClientBuilder[F]
- def withMaxWaitQueueLimit(maxWaitQueueLimit: Int): BlazeClientBuilder[F]
- def withParserMode(parserMode: ParserMode): BlazeClientBuilder[F]
- def withRequestTimeout(requestTimeout: Duration): BlazeClientBuilder[F]
- def withResponseHeaderTimeout(responseHeaderTimeout: Duration): BlazeClientBuilder[F]
- def withSocketKeepAlive(socketKeepAlive: Boolean): BlazeClientBuilder[F]
- def withSocketReceiveBufferSize(socketReceiveBufferSize: Int): BlazeClientBuilder[F]
- def withSocketReuseAddress(socketReuseAddress: Boolean): BlazeClientBuilder[F]
- def withSocketSendBufferSize(socketSendBufferSize: Int): BlazeClientBuilder[F]
- def withSslContext(sslContext: SSLContext): BlazeClientBuilder[F]
- def withSslContextOption(sslContext: Option[SSLContext]): BlazeClientBuilder[F]
- def withTcpNoDelay(tcpNoDelay: Boolean): BlazeClientBuilder[F]
- def withUserAgent(userAgent: User-Agent): BlazeClientBuilder[F]
- def withUserAgentOption(userAgent: Option[User-Agent]): BlazeClientBuilder[F]
- def withoutAsynchronousChannelGroup: BlazeClientBuilder[F]
- def withoutSslContext: BlazeClientBuilder[F]
- def withoutUserAgent: BlazeClientBuilder[F]