Class/Object

org.http4s.client

JavaNetClientBuilder

Related Docs: object JavaNetClientBuilder | package client

Permalink

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.

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. JavaNetClientBuilder
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  5. val blockingExecutionContext: ExecutionContext

    Permalink

    An ExecutionContext on which blocking operations will be performed.

  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. val connectTimeout: Duration

    Permalink
  8. def create[F[_]](implicit F: Async[F], cs: ContextShift[F]): Client[F]

    Permalink

    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.

  9. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  10. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  11. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  14. val hostnameVerifier: Option[HostnameVerifier]

    Permalink
  15. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  16. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  17. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  18. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. val proxy: Option[Proxy]

    Permalink
  20. val readTimeout: Duration

    Permalink
  21. def resource[F[_]](implicit F: Async[F], cs: ContextShift[F]): Resource[F, Client[F]]

    Permalink

    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.

  22. val sslSocketFactory: Option[SSLSocketFactory]

    Permalink
  23. def stream[F[_]](implicit F: Async[F], cs: ContextShift[F]): Stream[F, Client[F]]

    Permalink

    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.

  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. def withBlockingExecutionContext(blockingExecutionContext: ExecutionContext): JavaNetClientBuilder

    Permalink
  30. def withConnectTimeout(connectTimeout: Duration): JavaNetClientBuilder

    Permalink
  31. def withHostnameVerifier(hostnameVerifier: HostnameVerifier): JavaNetClientBuilder

    Permalink
  32. def withHostnameVerifierOption(hostnameVerifier: Option[HostnameVerifier]): JavaNetClientBuilder

    Permalink
  33. def withProxy(proxy: Proxy): JavaNetClientBuilder

    Permalink
  34. def withProxyOption(proxy: Option[Proxy]): JavaNetClientBuilder

    Permalink
  35. def withReadTimeout(readTimeout: Duration): JavaNetClientBuilder

    Permalink
  36. def withSslSocketFactory(sslSocketFactory: SSLSocketFactory): JavaNetClientBuilder

    Permalink
  37. def withSslSocketFactoryOption(sslSocketFactory: Option[SSLSocketFactory]): JavaNetClientBuilder

    Permalink
  38. def withoutHostnameVerifier: JavaNetClientBuilder

    Permalink
  39. def withoutProxy: JavaNetClientBuilder

    Permalink
  40. def withoutSslSocketFactory: JavaNetClientBuilder

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped