OkClient

class OkClient(val client: OkHttpClient, ec: ExecutionContext) extends HttpClient[Future] with OkHttpBackend
Companion:
object
trait HttpClient[Future]
trait Closeable
trait AutoCloseable
class Object
trait Matchable
class Any

Type members

Inherited classlikes

implicit implicit class FOps[T](f: F[T])
Inherited from:
HttpClient

Value members

Concrete methods

def execute(request: Request): Future[OkHttpResponse]
override def fail[T](e: Exception): Future[T]
Definition Classes
override def flatMap[T, U](t: Future[T])(f: T => Future[U]): Future[U]
Definition Classes
def raw(request: Request): Future[Response]

Remember to close the response body if calling this method. If you don't need to stream the response, call execute instead.

Remember to close the response body if calling this method. If you don't need to stream the response, call execute instead.

Value parameters:
request

request to execute

Returns:

the response

def streamed[T](request: Request)(consume: Response => Future[T]): Future[T]

Provides the response but closes the response body after consume completes.

Provides the response but closes the response body after consume completes.

Type parameters:
T

type of result

Value parameters:
consume

code to consume the response

request

request

override def success[T](t: T): Future[T]
Definition Classes

Inherited methods

override def close(): Unit
Definition Classes
OkHttpBackend -> Closeable -> AutoCloseable
Inherited from:
OkHttpBackend
def download(url: FullUrl, to: Path, headers: Map[String, String]): Future[Either[StatusError, StorageSize]]

Downloads url to to, returning the number of bytes written to to.

Downloads url to to, returning the number of bytes written to to.

Value parameters:
headers

http headers

to

destination, a file

url

url to download

Returns:

bytes written

Inherited from:
HttpClient
def get(url: FullUrl, headers: Map[String, String]): Future[OkHttpResponse]
Inherited from:
HttpClient
def getAs[T : Decoder](url: FullUrl, headers: Map[String, String]): Future[T]
Inherited from:
HttpClient
def multiPart(url: FullUrl, headers: Map[String, String], parts: Map[String, String], files: Seq[MultiPartFile]): Future[OkHttpResponse]
Inherited from:
HttpClient
def parse[T : Decoder](response: OkHttpResponse, url: FullUrl): Future[T]

Parses the response as a T.

Parses the response as a T.

The returned Future fails with a ResponseError if parsing fails.

Type parameters:
T

type to parse

Value parameters:
response

HTTP response

url

the request URL

Returns:

a parsed response

Inherited from:
HttpClient
def post(url: FullUrl, body: RequestBody, headers: Map[String, String]): Future[OkHttpResponse]
Inherited from:
HttpClient
def postAs[W : Encoder, T : Decoder](url: FullUrl, json: W, headers: Map[String, String]): Future[T]
Inherited from:
HttpClient
def postFile(url: FullUrl, mediaType: MediaType, file: Path, headers: Map[String, String]): Future[OkHttpResponse]
Inherited from:
HttpClient
def postForm(url: FullUrl, form: Map[String, String], headers: Map[String, String]): Future[OkHttpResponse]
Inherited from:
HttpClient
def postFormAs[T : Decoder](url: FullUrl, form: Map[String, String], headers: Map[String, String]): Future[T]
Inherited from:
HttpClient
def postJson(url: FullUrl, json: Json, headers: Map[String, String]): Future[OkHttpResponse]
Inherited from:
HttpClient
def postJsonAs[T : Decoder](url: FullUrl, json: Json, headers: Map[String, String]): Future[T]
Inherited from:
HttpClient

Concrete fields

val client: OkHttpClient

Implicits

Implicits

implicit val exec: ExecutionContext

Inherited implicits

final implicit def FOps[T](f: Future[T]): FOps[T]
Inherited from:
HttpClient