skinny.http

HTTP

object HTTP extends Logging

HTTP/1.1

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

Type Members

  1. type EC = ExecutionContext

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. val DEFAULT_CHARSET: String

  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def asyncDelete(url: String)(implicit ctx: EC): Future[Response]

  9. def asyncDelete(req: Request)(implicit ctx: EC): Future[Response]

  10. def asyncGet(url: String, queryParams: (String, Any)*)(implicit ctx: EC): Future[Response]

  11. def asyncGet(url: String, charset: String = DEFAULT_CHARSET)(implicit ctx: EC): Future[Response]

  12. def asyncGet(req: Request)(implicit ctx: EC): Future[Response]

  13. def asyncHead(url: String)(implicit ctx: EC): Future[Response]

  14. def asyncHead(req: Request)(implicit ctx: EC): Future[Response]

  15. def asyncOptions(url: String)(implicit ctx: EC): Future[Response]

  16. def asyncOptions(req: Request)(implicit ctx: EC): Future[Response]

  17. def asyncPost(url: String, formParams: (String, Any)*)(implicit ctx: EC): Future[Response]

  18. def asyncPost(url: String, data: String)(implicit ctx: EC): Future[Response]

  19. def asyncPost(req: Request)(implicit ctx: EC): Future[Response]

  20. def asyncPostMultipart(url: String, data: FormData*)(implicit ctx: EC): Future[Response]

  21. def asyncPut(url: String, formParams: (String, Any)*)(implicit ctx: EC): Future[Response]

  22. def asyncPut(url: String, data: String)(implicit ctx: EC): Future[Response]

  23. def asyncPut(req: Request)(implicit ctx: EC): Future[Response]

  24. def asyncPutMultipart(url: String, data: FormData*)(implicit ctx: EC): Future[Response]

  25. def asyncRequest(method: Method, req: Request)(implicit ctx: EC): Future[Response]

  26. def asyncTrace(url: String)(implicit ctx: EC): Future[Response]

  27. def asyncTrace(req: Request)(implicit ctx: EC): Future[Response]

  28. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. def debug(msg: ⇒ Any, t: ⇒ Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  30. def debug(msg: ⇒ Any): Unit

    Attributes
    protected
    Definition Classes
    Logging
  31. var defaultConnectTimeoutMillis: Int

  32. var defaultReadTimeoutMillis: Int

  33. def delete(url: String): Response

  34. def delete(req: Request): Response

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

    Definition Classes
    AnyRef
  36. def equals(arg0: Any): Boolean

    Definition Classes
    AnyRef → Any
  37. def error(msg: ⇒ Any, t: ⇒ Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  38. def error(msg: ⇒ Any): Unit

    Attributes
    protected
    Definition Classes
    Logging
  39. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  40. def get(url: String, queryParams: (String, Any)*): Response

  41. def get(url: String, charset: String = DEFAULT_CHARSET): Response

  42. def get(req: Request): Response

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

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

    Definition Classes
    AnyRef → Any
  45. def head(url: String): Response

  46. def head(req: Request): Response

  47. def info(msg: ⇒ Any, t: ⇒ Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  48. def info(msg: ⇒ Any): Unit

    Attributes
    protected
    Definition Classes
    Logging
  49. def isDebugEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  50. def isErrorEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  51. def isInfoEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  52. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  53. def isTraceEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  54. def isWarnEnabled: Boolean

    Attributes
    protected
    Definition Classes
    Logging
  55. def logger: Logger

    Attributes
    protected
    Definition Classes
    Logging
  56. def loggerName: String

    Attributes
    protected
    Definition Classes
    Logging
  57. final def ne(arg0: AnyRef): Boolean

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

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

    Definition Classes
    AnyRef
  60. def options(url: String): Response

  61. def options(req: Request): Response

  62. def post(url: String, formParams: (String, Any)*): Response

  63. def post(url: String, data: String): Response

  64. def post(req: Request): Response

  65. def postMultipart(url: String, data: FormData*): Response

  66. def put(url: String, formParams: (String, Any)*): Response

  67. def put(url: String, data: String): Response

  68. def put(req: Request): Response

  69. def putMultipart(url: String, data: FormData*): Response

  70. def request(method: Method, request: Request): Response

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

    Definition Classes
    AnyRef
  72. def toString(): String

    Definition Classes
    AnyRef → Any
  73. def trace(url: String): Response

  74. def trace(req: Request): Response

  75. def trace(msg: ⇒ Any, t: ⇒ Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  76. def trace(msg: ⇒ Any): Unit

    Attributes
    protected
    Definition Classes
    Logging
  77. def urlEncode(rawValue: String, charset: String): String

  78. def urlEncode(rawValue: String): String

  79. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  82. def warn(msg: ⇒ Any, t: ⇒ Throwable): Unit

    Attributes
    protected
    Definition Classes
    Logging
  83. def warn(msg: ⇒ Any): Unit

    Attributes
    protected
    Definition Classes
    Logging

Inherited from Logging

Inherited from AnyRef

Inherited from Any

Ungrouped