class ApacheHttpClient extends HttpClient
- Alphabetic
- By Inheritance
- ApacheHttpClient
- HttpClient
- AutoCloseable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Instance Constructors
- new ApacheHttpClient(config: Config)
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 buildClient(authOpt: Option[Realm], signatureOpt: Option[SignatureCalculator], targetOpt: Option[String]): CloseableHttpAsyncClient
- def buildClient(request: Request): CloseableHttpAsyncClient
- def buildCredentialProvider(auth: Realm): CredentialsProvider
- def buildInterceptor(signatureCalculator: SignatureCalculator, target: String): HttpRequestInterceptor
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
def
close(): Unit
- Definition Classes
- ApacheHttpClient → HttpClient → AutoCloseable
-
def
download(request: Request, file: File): Future[File]
- Definition Classes
- ApacheHttpClient → 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()
- val ioReactorConfig: IOReactorConfig
-
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
processByteStream[A](request: Request, handler: ApacheByteStreamHandler[A]): Future[A]
Executes the request.
Executes the request. Does not error on non-OK response.
-
def
processCharStream[A](request: Request, handler: ApacheCharStreamHandler[A]): Future[A]
Executes the request.
Executes the request. Does not error on non-OK response.
-
def
processFull[A](request: Request, handler: ApacheCompletionHandler[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
- ApacheHttpClient → 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
- ApacheHttpClient → 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
- ApacheHttpClient → HttpClient
-
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
- ApacheHttpClient → 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
- ApacheHttpClient → 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
- ApacheHttpClient → HttpClient
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
def
underlying[A]: A
- Definition Classes
- ApacheHttpClient → 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]
- Definition Classes
- ApacheHttpClient → HttpClient