object RESTHelpers

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RESTHelpers
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. lazy val Client: CloseableHttpClient
  2. lazy val ConnectionManager: PoolingHttpClientConnectionManager
  3. lazy val RequestConfigVal: RequestConfig
  4. lazy val RequestTimeout: Int
  5. def parseResult(result: CloseableHttpResponse): String
  6. def retry[T](backoffs: List[Int], f: () ⇒ T): T
    Annotations
    @tailrec()
  7. def safeSend(request: HttpRequestBase, backoffs: List[Int] = List(100, 500, 1000), expectedCodes: Set[Int] = Set(), close: Boolean = true): CloseableHttpResponse
  8. def sendAndParseJson(request: HttpRequestBase, expectedCodes: Set[Int] = Set()): JsValue