Packages

sealed abstract class BlazeClientBuilder[F[_]] extends AnyRef

Source
BlazeClientBuilder.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BlazeClientBuilder
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def allocate(implicit F: ConcurrentEffect[F]): F[(Client[F], F[Unit])]
  2. val asynchronousChannelGroup: Option[AsynchronousChannelGroup]
  3. val bufferSize: Int
  4. def channelOption[A](socketOption: SocketOption[A]): Option[A]
  5. val channelOptions: ChannelOptions
  6. val checkEndpointIdentification: Boolean
  7. val executionContext: ExecutionContext
  8. val idleTimeout: Duration
  9. val maxChunkSize: Int
  10. val maxConnectionsPerRequestKey: (RequestKey) ⇒ Int
  11. val maxHeaderLength: Int
  12. val maxResponseLineSize: Int
  13. val maxTotalConnections: Int
  14. val maxWaitQueueLimit: Int
  15. val parserMode: ParserMode
  16. val requestTimeout: Duration
  17. def resource(implicit F: ConcurrentEffect[F]): Resource[F, Client[F]]
  18. val responseHeaderTimeout: Duration
  19. def socketKeepAlive: Option[Boolean]
  20. def socketReceiveBufferSize: Option[Int]
  21. def socketReuseAddress: Option[Boolean]
  22. def socketSendBufferSize: Option[Int]
  23. val sslContext: Option[SSLContext]
  24. def stream(implicit F: ConcurrentEffect[F]): Stream[F, Client[F]]
  25. def tcpNoDelay: Option[Boolean]
  26. val userAgent: Option[User-Agent]
  27. def withAsynchronousChannelGroup(asynchronousChannelGroup: AsynchronousChannelGroup): BlazeClientBuilder[F]
  28. def withAsynchronousChannelGroupOption(asynchronousChannelGroup: Option[AsynchronousChannelGroup]): BlazeClientBuilder[F]
  29. def withBufferSize(bufferSize: Int): BlazeClientBuilder[F]
  30. def withChannelOption[A](key: SocketOption[A], value: A): BlazeClientBuilder[F]
  31. def withChannelOptions(channelOptions: ChannelOptions): BlazeClientBuilder[F]
  32. def withCheckEndpointAuthentication(checkEndpointIdentification: Boolean): BlazeClientBuilder[F]
  33. def withDefaultChannelOption[A](key: SocketOption[A]): BlazeClientBuilder[F]
  34. def withDefaultSocketKeepAlive: BlazeClientBuilder[F]
  35. def withDefaultSocketReceiveBufferSize: BlazeClientBuilder[F]
  36. def withDefaultSocketReuseAddress: BlazeClientBuilder[F]
  37. def withDefaultSocketSendBufferSize: BlazeClientBuilder[F]
  38. def withDefaultTcpNoDelay: BlazeClientBuilder[F]
  39. def withExecutionContext(executionContext: ExecutionContext): BlazeClientBuilder[F]
  40. def withIdleTimeout(idleTimeout: Duration): BlazeClientBuilder[F]
  41. def withMaxChunkSize(maxChunkSize: Int): BlazeClientBuilder[F]
  42. def withMaxConnectionsPerRequestKey(maxConnectionsPerRequestKey: (RequestKey) ⇒ Int): BlazeClientBuilder[F]
  43. def withMaxResponseLineSize(maxResponseLineSize: Int): BlazeClientBuilder[F]
  44. def withMaxTotalConnections(maxTotalConnections: Int): BlazeClientBuilder[F]
  45. def withMaxWaitQueueLimit(maxWaitQueueLimit: Int): BlazeClientBuilder[F]
  46. def withParserMode(parserMode: ParserMode): BlazeClientBuilder[F]
  47. def withRequestTimeout(requestTimeout: Duration): BlazeClientBuilder[F]
  48. def withResponseHeaderTimeout(responseHeaderTimeout: Duration): BlazeClientBuilder[F]
  49. def withSocketKeepAlive(socketKeepAlive: Boolean): BlazeClientBuilder[F]
  50. def withSocketReceiveBufferSize(socketReceiveBufferSize: Int): BlazeClientBuilder[F]
  51. def withSocketReuseAddress(socketReuseAddress: Boolean): BlazeClientBuilder[F]
  52. def withSocketSendBufferSize(socketSendBufferSize: Int): BlazeClientBuilder[F]
  53. def withSslContext(sslContext: SSLContext): BlazeClientBuilder[F]
  54. def withSslContextOption(sslContext: Option[SSLContext]): BlazeClientBuilder[F]
  55. def withTcpNoDelay(tcpNoDelay: Boolean): BlazeClientBuilder[F]
  56. def withUserAgent(userAgent: User-Agent): BlazeClientBuilder[F]
  57. def withUserAgentOption(userAgent: Option[User-Agent]): BlazeClientBuilder[F]
  58. def withoutAsynchronousChannelGroup: BlazeClientBuilder[F]
  59. def withoutSslContext: BlazeClientBuilder[F]
  60. def withoutUserAgent: BlazeClientBuilder[F]