Packages

sealed abstract class JavaNetClient extends AnyRef

A Client based on java.net.HttpUrlConnection.

JavaNetClient 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
JavaNetClient.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JavaNetClient
  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 JavaNetClient to any2stringadd[JavaNetClient] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (JavaNetClient, B)
    Implicit
    This member is added by an implicit conversion from JavaNetClient to ArrowAssoc[JavaNetClient] 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: Effect[F]): Client[F]

    Creates the JavaNetClient.

    Creates the JavaNetClient.

    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: (JavaNetClient) ⇒ Boolean, msg: ⇒ Any): JavaNetClient
    Implicit
    This member is added by an implicit conversion from JavaNetClient to Ensuring[JavaNetClient] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (JavaNetClient) ⇒ Boolean): JavaNetClient
    Implicit
    This member is added by an implicit conversion from JavaNetClient to Ensuring[JavaNetClient] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): JavaNetClient
    Implicit
    This member is added by an implicit conversion from JavaNetClient to Ensuring[JavaNetClient] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): JavaNetClient
    Implicit
    This member is added by an implicit conversion from JavaNetClient to Ensuring[JavaNetClient] 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 JavaNetClient to StringFormat[JavaNetClient] 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. val sslSocketFactory: Option[SSLSocketFactory]
  29. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  30. def toString(): String
    Definition Classes
    AnyRef → Any
  31. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @throws( ... )
  34. def withBlockingExecutionContext(blockingExecutionContext: ExecutionContext): JavaNetClient
  35. def withConnectTimeout(connectTimeout: Duration): JavaNetClient
  36. def withHostnameVerifier(hostnameVerifier: HostnameVerifier): JavaNetClient
  37. def withHostnameVerifierOption(hostnameVerifier: Option[HostnameVerifier]): JavaNetClient
  38. def withProxy(proxy: Proxy): JavaNetClient
  39. def withProxyOption(proxy: Option[Proxy]): JavaNetClient
  40. def withReadTimeout(readTimeout: Duration): JavaNetClient
  41. def withSslSocketFactory(sslSocketFactory: SSLSocketFactory): JavaNetClient
  42. def withSslSocketFactoryOption(sslSocketFactory: Option[SSLSocketFactory]): JavaNetClient
  43. def withoutHostnameVerifier: JavaNetClient
  44. def withoutProxy: JavaNetClient
  45. def withoutSslSocketFactory: JavaNetClient
  46. def [B](y: B): (JavaNetClient, B)
    Implicit
    This member is added by an implicit conversion from JavaNetClient to ArrowAssoc[JavaNetClient] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped