gigahorse

Request

final class Request extends Serializable

Linear Supertypes
Serializable, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. Request
  2. Serializable
  3. Serializable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

  1. final def !=(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. def addHeader(headers0: (String, String)*): Request

  7. def addHeaders(headers0: Map[String, List[String]]): Request

  8. def addHeaders(headers0: (String, String)*): Request

  9. def addQueryString(parameters: (String, String)*): Request

  10. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  11. val authOpt: Option[Realm]

  12. val body: Body

  13. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  14. def contentType: Option[String]

  15. def copy(url: String = url, method: String = method, body: Body = body, headers: Map[String, List[String]] = headers, queryString: Map[String, List[String]] = queryString, signatureOpt: Option[SignatureCalculator] = signatureOpt, authOpt: Option[Realm] = authOpt, followRedirectsOpt: Option[Boolean] = followRedirectsOpt, requestTimeoutOpt: Option[Duration] = requestTimeoutOpt, virtualHostOpt: Option[String] = virtualHostOpt, proxyServerOpt: Option[ProxyServer] = proxyServerOpt): Request

    Attributes
    protected[this]
  16. def delete: Request

    Uses DELETE method.

  17. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  18. def equals(o: Any): Boolean

    Definition Classes
    Request → AnyRef → Any
  19. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  20. val followRedirectsOpt: Option[Boolean]

  21. def get: Request

    Uses GET method.

  22. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  23. def hashCode(): Int

    Definition Classes
    Request → AnyRef → Any
  24. def head: Request

    Uses HEAD method.

  25. val headers: Map[String, List[String]]

  26. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  27. val method: String

  28. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  29. final def notify(): Unit

    Definition Classes
    AnyRef
  30. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  31. def options: Request

    Uses OPTIONS method.

  32. def patch(file: File): Request

    Uses PATCH method with the given file.

  33. def patch(body: String, charset: Charset): Request

    Uses PATCH method with the given body.

  34. def patch[A](body: A)(implicit arg0: HttpWrite[A]): Request

    Uses PATCH method with the given body.

  35. def post(file: File): Request

    Uses POST method with the given file.

  36. def post(body: String, charset: Charset): Request

    Uses POST method with the given body.

  37. def post[A](body: A)(implicit arg0: HttpWrite[A]): Request

    Uses POST method with the given body.

  38. val proxyServerOpt: Option[ProxyServer]

  39. def put(file: File): Request

    Uses PUT method with the given file.

  40. def put(body: String, charset: Charset): Request

    Uses PUT method with the given body.

  41. def put[A](body: A)(implicit arg0: HttpWrite[A]): Request

    Uses PUT method with the given body.

  42. val queryString: Map[String, List[String]]

  43. val requestTimeoutOpt: Option[Duration]

  44. val signatureOpt: Option[SignatureCalculator]

  45. final def synchronized[T0](arg0: ⇒ T0): T0

    Definition Classes
    AnyRef
  46. def toString(): String

    Definition Classes
    Request → AnyRef → Any
  47. val url: String

  48. val virtualHostOpt: Option[String]

  49. final def wait(): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  50. final def wait(arg0: Long, arg1: Int): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  51. final def wait(arg0: Long): Unit

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  52. def withAuth(username: String, password: String, scheme: AuthScheme): Request

  53. def withAuth(username: String, password: String): Request

  54. def withAuth(auth: Realm): Request

  55. def withAuthOpt(authOpt: Realm): Request

  56. def withAuthOpt(authOpt: Option[Realm]): Request

  57. def withBody(body: Body): Request

  58. def withBody[A](body: A)(implicit arg0: HttpWrite[A]): Request

  59. def withContentType(mt: String, charset: Charset): Request

  60. def withContentType(ct: String): Request

  61. def withFollowRedirects(follow: Boolean): Request

  62. def withFollowRedirectsOpt(followRedirectsOpt: Boolean): Request

  63. def withFollowRedirectsOpt(followRedirectsOpt: Option[Boolean]): Request

  64. def withHeaders(headers: Map[String, List[String]]): Request

  65. def withHeaders(headers0: (String, String)*): Request

  66. def withMethod(method: String): Request

  67. def withProxyServer(proxyServer: ProxyServer): Request

  68. def withProxyServerOpt(proxyServerOpt: ProxyServer): Request

  69. def withProxyServerOpt(proxyServerOpt: Option[ProxyServer]): Request

  70. def withQueryString(queryString: Map[String, List[String]]): Request

  71. def withQueryString(parameters: (String, String)*): Request

  72. def withRequestTimeout(requestTimeout: Duration): Request

  73. def withRequestTimeoutOpt(requestTimeoutOpt: Duration): Request

  74. def withRequestTimeoutOpt(requestTimeoutOpt: Option[Duration]): Request

  75. def withSignatureOpt(signatureOpt: SignatureCalculator): Request

  76. def withSignatureOpt(signatureOpt: Option[SignatureCalculator]): Request

  77. def withUrl(url: String): Request

  78. def withVirtualHost(virtualHost: String): Request

  79. def withVirtualHostOpt(virtualHostOpt: String): Request

  80. def withVirtualHostOpt(virtualHostOpt: Option[String]): Request

Inherited from Serializable

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped