class AhcHttpClient extends ReactiveHttpClient
- Alphabetic
- By Inheritance
- AhcHttpClient
- ReactiveHttpClient
- HttpClient
- AutoCloseable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
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
buildRequest(request: Request): shaded.ahc.org.asynchttpclient.Request
Creates and returns an AHC request, running all operations on it.
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
close(): Unit
- Definition Classes
- AhcHttpClient → HttpClient → AutoCloseable
-
def
download(request: Request, file: File): Future[File]
- Definition Classes
- AhcHttpClient → HttpClient
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
def
finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( classOf[java.lang.Throwable] )
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native()
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native()
-
def
processFull[A](request: Request, handler: AhcCompletionHandler[A]): Future[A]
Executes the request.
Executes the request. Does not error on non-OK response.
-
def
processFull[A](request: Request, lifter: FutureLifter[A])(implicit ec: ExecutionContext): Future[Either[Throwable, A]]
Executes the request and return a Future of Either a Response or a Throwable.
Executes the request and return a Future of Either a Response or a Throwable. Does not error on non-OK response.
- Definition Classes
- AhcHttpClient → HttpClient
-
def
processFull[A](request: Request, f: (FullResponse) ⇒ A): Future[A]
Executes the request and return a Future of A.
Executes the request and return a Future of A. Does not error on non-OK response.
- Definition Classes
- AhcHttpClient → HttpClient
-
def
processFull(request: Request): Future[FullResponse]
Executes the request and return a Future of FullResponse.
Executes the request and return a Future of FullResponse. Does not error on non-OK response.
- Definition Classes
- AhcHttpClient → HttpClient
-
def
processStream[A](request: Request, handler: AhcStreamHandler[A]): Future[A]
Executes the request and return a Future of A.
Executes the request and return a Future of A. Does not error on non-OK response.
-
def
processStream[A](request: Request, f: (StreamResponse) ⇒ Future[A]): Future[A]
Executes the request and return a Future of A.
Executes the request and return a Future of A. Does not error on non-OK response.
- Definition Classes
- AhcHttpClient → ReactiveHttpClient
-
def
processStream(request: Request): Future[StreamResponse]
Executes the request and return a Future of StreamResponse.
Executes the request and return a Future of StreamResponse. Does not error on non-OK response.
- Definition Classes
- AhcHttpClient → ReactiveHttpClient
-
def
run[A](request: Request, lifter: FutureLifter[A])(implicit ec: ExecutionContext): Future[Either[Throwable, A]]
Runs the request and return a Future of Either a FullResponse or a Throwable.
Runs the request and return a Future of Either a FullResponse or a Throwable.
- Definition Classes
- AhcHttpClient → HttpClient
-
def
run[A](request: Request, f: (FullResponse) ⇒ A): Future[A]
Runs the request and return a Future of A.
Runs the request and return a Future of A.
- Definition Classes
- AhcHttpClient → HttpClient
-
def
run(request: Request): Future[FullResponse]
Runs the request and return a Future of FullResponse.
Runs the request and return a Future of FullResponse.
- Definition Classes
- AhcHttpClient → HttpClient
-
def
runStream[A](request: Request, f: (StreamResponse) ⇒ Future[A]): Future[A]
Runs the request and return a Future of A.
Runs the request and return a Future of A.
- Definition Classes
- AhcHttpClient → ReactiveHttpClient
-
def
runStream(request: Request): Future[StreamResponse]
Runs the request and return a Future of StreamResponse.
Runs the request and return a Future of StreamResponse.
- Definition Classes
- AhcHttpClient → ReactiveHttpClient
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AhcHttpClient → AnyRef → Any
-
def
underlying[A]: A
- Definition Classes
- AhcHttpClient → HttpClient
-
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( ... ) @native()
-
def
websocket(request: Request)(handler: PartialFunction[WebSocketEvent, Unit]): Future[WebSocket]
Open a websocket connection.
Open a websocket connection.
- Definition Classes
- AhcHttpClient → HttpClient