Packages

sealed abstract class JavaNetClientBuilder extends AnyRef

Builder for a Client backed by on java.net.HttpUrlConnection.

The java.net client adds no dependencies beyond http4s-client. This client is generally not production grade, but convenient for exploration in a REPL.

All I/O operations in this client are blocking.

Source
JavaNetClientBuilder.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JavaNetClientBuilder
  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. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from JavaNetClientBuilder to any2stringadd[JavaNetClientBuilder] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (JavaNetClientBuilder, B)
    Implicit
    This member is added by an implicit conversion from JavaNetClientBuilder to ArrowAssoc[JavaNetClientBuilder] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. val blockingExecutionContext: ExecutionContext
  8. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  9. val connectTimeout: Duration
  10. def create[F[_]](implicit F: Async[F], cs: ContextShift[F]): Client[F]

    Creates a Client.

    Creates a Client.

    The shutdown of this client is a no-op. Creation of the client allocates no resources, and any resources allocated while using this client are reclaimed by the JVM at its own leisure.

  11. def ensuring(cond: (JavaNetClientBuilder) ⇒ Boolean, msg: ⇒ Any): JavaNetClientBuilder
    Implicit
    This member is added by an implicit conversion from JavaNetClientBuilder to Ensuring[JavaNetClientBuilder] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (JavaNetClientBuilder) ⇒ Boolean): JavaNetClientBuilder
    Implicit
    This member is added by an implicit conversion from JavaNetClientBuilder to Ensuring[JavaNetClientBuilder] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): JavaNetClientBuilder
    Implicit
    This member is added by an implicit conversion from JavaNetClientBuilder to Ensuring[JavaNetClientBuilder] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): JavaNetClientBuilder
    Implicit
    This member is added by an implicit conversion from JavaNetClientBuilder to Ensuring[JavaNetClientBuilder] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from JavaNetClientBuilder to StringFormat[JavaNetClientBuilder] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. val hostnameVerifier: Option[HostnameVerifier]
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  24. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  25. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  26. val proxy: Option[Proxy]
  27. val readTimeout: Duration
  28. def resource[F[_]](implicit F: Async[F], cs: ContextShift[F]): Resource[F, Client[F]]

    Creates a Client resource.

    Creates a Client resource.

    The release of this resource is a no-op. Creation of the client allocates no resources, and any resources allocated while using this client are reclaimed by the JVM at its own leisure.

  29. val sslSocketFactory: Option[SSLSocketFactory]
  30. def stream[F[_]](implicit F: Async[F], cs: ContextShift[F]): Stream[F, Client[F]]

    Creates a Client stream.

    Creates a Client stream.

    The bracketed release on this stream is a no-op. Creation of the client allocates no resources, and any resources allocated while using this client are reclaimed by the JVM at its own leisure.

  31. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  32. def toString(): String
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  36. def withBlockingExecutionContext(blockingExecutionContext: ExecutionContext): JavaNetClientBuilder
  37. def withConnectTimeout(connectTimeout: Duration): JavaNetClientBuilder
  38. def withHostnameVerifier(hostnameVerifier: HostnameVerifier): JavaNetClientBuilder
  39. def withHostnameVerifierOption(hostnameVerifier: Option[HostnameVerifier]): JavaNetClientBuilder
  40. def withProxy(proxy: Proxy): JavaNetClientBuilder
  41. def withProxyOption(proxy: Option[Proxy]): JavaNetClientBuilder
  42. def withReadTimeout(readTimeout: Duration): JavaNetClientBuilder
  43. def withSslSocketFactory(sslSocketFactory: SSLSocketFactory): JavaNetClientBuilder
  44. def withSslSocketFactoryOption(sslSocketFactory: Option[SSLSocketFactory]): JavaNetClientBuilder
  45. def withoutHostnameVerifier: JavaNetClientBuilder
  46. def withoutProxy: JavaNetClientBuilder
  47. def withoutSslSocketFactory: JavaNetClientBuilder
  48. def [B](y: B): (JavaNetClientBuilder, B)
    Implicit
    This member is added by an implicit conversion from JavaNetClientBuilder to ArrowAssoc[JavaNetClientBuilder] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from JavaNetClientBuilder to any2stringadd[JavaNetClientBuilder]

Inherited by implicit conversion StringFormat from JavaNetClientBuilder to StringFormat[JavaNetClientBuilder]

Inherited by implicit conversion Ensuring from JavaNetClientBuilder to Ensuring[JavaNetClientBuilder]

Inherited by implicit conversion ArrowAssoc from JavaNetClientBuilder to ArrowAssoc[JavaNetClientBuilder]

Ungrouped