class OkhClient extends HttpClient
- Alphabetic
- By Inheritance
- OkhClient
- HttpClient
- AutoCloseable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new OkhClient(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 buildAuthenticator(auth: Realm): Authenticator
- def buildClient(b0: CB, authOpt: Option[Realm], signatureOpt: Option[SignatureCalculator]): OkHttpClient
- def buildClient: OkHttpClient
- def buildRequest(request: Request): (okhttp3.Request, OkHttpClient)
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native()
- def close(): Unit
- Definition Classes
- OkhClient → HttpClient → AutoCloseable
- def configureSignatureCalculator(signatureCalculator: SignatureCalculator, b1: Builder): Builder
- def configureSsl(sslConfig: SSLConfigSettings, b1: Builder): Builder
- def download(request: Request, file: File): Future[File]
- Definition Classes
- OkhClient → HttpClient
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable])
- final def getClass(): Class[_ <: AnyRef]
- 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: OkhCompletionHandler[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
- OkhClient → 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
- OkhClient → 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
- OkhClient → HttpClient
- def processStream[A](request: Request, handler: OkhStreamHandler[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 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
- OkhClient → 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
- OkhClient → 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
- OkhClient → HttpClient
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- AnyRef → Any
- def underlying[A]: A
- Definition Classes
- OkhClient → HttpClient
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- def websocket(request: Request)(handler: PartialFunction[WebSocketEvent, Unit]): Future[WebSocket]
- Definition Classes
- OkhClient → HttpClient