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)
- Alphabetic
- By Inheritance
- Http
- Serializable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
lazy val
default: Http
The default executor.
- val defaultClientBuilder: Builder
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[java.lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
def
withConfiguration(withBuilder: (Builder) ⇒ Builder): Http
Create an Http executor with some custom configuration defined by the
withBuilderfunction that will mutate the underlyingBuilderfrom AHC.
Deprecated Value Members
-
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.
-
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.
-
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.