httpz.native.Http

Request

Related Docs: object Request | package Http

case class Request(method: String, exec: HttpExec, url: HttpUrl, params: List[(String, String)], headers: List[(String, String)], options: List[HttpOption], charset: String = Http.utf8, sendBufferSize: Int = 4096) extends Product with Serializable

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

Instance Constructors

  1. new Request(method: String, exec: HttpExec, url: HttpUrl, params: List[(String, String)], headers: List[(String, String)], options: List[HttpOption], charset: String = Http.utf8, sendBufferSize: Int = 4096)

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 apply[T](parser: (InputStream) ⇒ T): T

  5. def asBytes: Array[Byte]

  6. def asCodeHeaders: (Int, Map[String, List[String]])

  7. def asHeadersAndParse[T](parser: (InputStream) ⇒ T): (Int, Map[String, List[String]], T)

  8. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  9. def asParamMap: Map[String, String]

  10. def asParams: List[(String, String)]

  11. def asString: String

  12. def asToken: Token

  13. def auth(user: String, password: String): Request

  14. def bearer(token: String): Request

  15. def charset(cs: String): Request

  16. val charset: String

  17. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  18. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  19. val exec: HttpExec

  20. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  21. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  22. def getResponseHeaders(conn: HttpURLConnection): Map[String, List[String]]

  23. def getUrl: URL

  24. def header(key: String, value: String): Request

  25. def headers(h: List[(String, String)]): Request

  26. def headers(h: Map[String, String]): Request

  27. def headers(h: (String, String)*): Request

  28. val headers: List[(String, String)]

  29. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  30. def method(m: String): Request

  31. val method: String

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

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

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

    Definition Classes
    AnyRef
  35. def oauth(consumer: Token, token: Option[Token], verifier: Option[String]): Request

  36. def oauth(consumer: Token, token: Token, verifier: String): Request

  37. def oauth(consumer: Token, token: Token): Request

  38. def oauth(consumer: Token): Request

  39. def option(o: HttpOption): Request

  40. def options(o: List[HttpOption]): Request

  41. def options(o: HttpOption*): Request

  42. val options: List[HttpOption]

  43. def param(key: String, value: String): Request

  44. def params(p: List[(String, String)]): Request

  45. def params(p: Map[String, String]): Request

  46. def params(p: (String, String)*): Request

  47. val params: List[(String, String)]

  48. def process[T](processor: (HttpURLConnection) ⇒ T): T

  49. def responseCode: Int

  50. def sendBufferSize(numBytes: Int): Request

  51. val sendBufferSize: Int

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

    Definition Classes
    AnyRef
  53. val url: HttpUrl

  54. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped