object Http extends Serializable

Singleton helper for vending Http instances.

In past versions of Dispatch, this singleon was, itself, an Http executor. That could lead to a few code traps were it was possible to unintentionally allocate additional Http pools without realizing it because Http.xxxx and Http().xxxx both look very similar - yet do very different things.

In the interest of avoiding such code traps in future releases of Dispatch, Http was changed to a helper in 0.13.x that is capable of vending a default Http executor instance or of configuring a custom one with its withConfiguration method.

If you relied on the default Http instance in your code you can easily port your code to 0.13.x by simply invoking the Http.default method. Such as...

Http.default(localhost / "split" << Seq("str" -> str) > as.String)
Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Http
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  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. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. lazy val default: Http

    The default executor.

  7. val defaultClientBuilder: Builder
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  10. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  11. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
  12. def hashCode(): Int
    Definition Classes
    AnyRef → Any
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  15. final def notify(): Unit
    Definition Classes
    AnyRef
  16. final def notifyAll(): Unit
    Definition Classes
    AnyRef
  17. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    AnyRef → Any
  19. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  22. def withConfiguration(withBuilder: (Builder) ⇒ Builder): Http

    Create an Http executor with some custom configuration defined by the withBuilder function that will mutate the underlying Builder from AHC.

Deprecated Value Members

  1. def apply[T](request: Request, handler: AsyncHandler[T])(implicit executor: ExecutionContext): Future[T]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.2) Using the Http singleton directly is deprecated and will be removed in a future version of dispatch. Please switch to invoking Http.default for using a globally accessible default Http client.

  2. def apply[T](pair: (Request, AsyncHandler[T]))(implicit executor: ExecutionContext): Future[T]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.2) Using the Http singleton directly is deprecated and will be removed in a future version of dispatch. Please switch to invoking Http.default for using a globally accessible default Http client.

  3. def apply(req: Req)(implicit executor: ExecutionContext): Future[Response]
    Annotations
    @deprecated
    Deprecated

    (Since version 0.12.2) Using the Http singleton directly is deprecated and will be removed in a future version of dispatch. Please switch to invoking Http.default for using a globally accessible default Http client.

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped