Packages

trait RestClient extends Loggable

Source
RestClient.scala
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RestClient
  2. Loggable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. class CookieMap extends AnyRef

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def actorSystemName: String
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val awaitTimeout: FiniteDuration
  7. def clearCookies: Unit
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  9. def createActorSystem: ActorSystem
  10. def decodeResponse(response: HttpResponse): HttpResponse
  11. val defaultPassword: String
  12. val defaultUsername: String
  13. def doRequest(req: HttpRequest, cookieStorage: CookieMap, maxRedirects: Int = 20): Future[HttpResponse]
    Attributes
    protected
  14. def doRequestWithTimeout(req: HttpRequest, cookieStorage: CookieMap, timeout: FiniteDuration, maxRedirects: Int = 20): Future[HttpResponse]
    Attributes
    protected
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  17. implicit val executionContext: ExecutionContextExecutor
  18. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  19. val flow: Flow[(HttpRequest, Unit), (Try[HttpResponse], Unit), NotUsed]
  20. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  21. def getCookieStorage: CookieMap
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  23. def httpGet[R](path: String, params: Map[String, Any] = Map.empty, headers: Seq[HttpHeader] = iSeq(), cookieStorage: CookieMap = getCookieStorage)(implicit unmarshaller: FromResponseUnmarshaller[R]): Future[R]
  24. def httpGetAwait[R](path: String, params: Map[String, Any] = Map.empty, headers: Seq[HttpHeader] = iSeq())(implicit unmarshaller: FromResponseUnmarshaller[R]): R
  25. def httpGetWithTimeout[R](path: String, timeout: FiniteDuration, params: Map[String, Any] = Map.empty, headers: Seq[HttpHeader] = iSeq(), cookieStorage: CookieMap = getCookieStorage)(implicit unmarshaller: FromResponseUnmarshaller[R]): Future[R]
  26. def httpPost[T, R](method: HttpMethod, path: String, content: T, headers: Seq[HttpHeader] = iSeq(), cookieStorage: CookieMap = getCookieStorage)(implicit marshaller: Marshaller[T, RequestEntity], unmarshaller: FromResponseUnmarshaller[R]): Future[R]
  27. def httpPostAwait[T, R](method: HttpMethod, path: String, content: T, headers: Seq[HttpHeader] = iSeq())(implicit marshaller: Marshaller[T, RequestEntity], umarshaller: FromResponseUnmarshaller[R]): R
  28. def httpPostWithTimeout[T, R](method: HttpMethod, path: String, content: T, timeout: FiniteDuration, headers: Seq[HttpHeader] = iSeq(), cookieStorage: CookieMap = getCookieStorage)(implicit marshaller: Marshaller[T, RequestEntity], unmarshaller: FromResponseUnmarshaller[R]): Future[R]
  29. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  30. def listenToWs(actor: ActorRef): Unit
  31. lazy val logger: Logger
    Attributes
    protected
    Definition Classes
    Loggable
  32. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  33. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  34. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  35. lazy val port: Int
  36. def requestFailed(message: String, cause: Throwable, status: StatusCode = null, content: String = null, request: HttpRequest = null): Nothing
    Attributes
    protected
  37. def requestPath(uri: String): String
  38. val requestTimeout: FiniteDuration
  39. lazy val serverPath: String
  40. lazy val serverWsPath: String
  41. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  42. implicit val system: ActorSystem
  43. def toString(): String
    Definition Classes
    AnyRef → Any
  44. val urlDecoder: (String) ⇒ String
  45. val urlEncoder: (String) ⇒ String
  46. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  47. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  48. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()

Inherited from Loggable

Inherited from AnyRef

Inherited from Any

Ungrouped