Class

featherbed.request.RequestTypes

HeadRequest

Related Doc: package RequestTypes

Permalink

case class HeadRequest(url: URL, headers: List[(String, String)] = List.empty, charset: Charset = StandardCharsets.UTF_8) extends Client.RequestSyntax[Nothing, Client.HeadRequest] with Product with Serializable

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HeadRequest
  2. Serializable
  3. Serializable
  4. Product
  5. Equals
  6. RequestSyntax
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new HeadRequest(url: URL, headers: List[(String, String)] = List.empty, charset: Charset = StandardCharsets.UTF_8)

    Permalink

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
    Definition Classes
    AnyRef → Any
  4. def addQueryParams(params: (String, String)*): Client.HeadRequest

    Permalink
    Definition Classes
    RequestSyntax
  5. def addQueryParams(params: List[(String, String)]): Client.HeadRequest

    Permalink
    Definition Classes
    RequestSyntax
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def buildHeaders[HasUrl](rb: RequestBuilder[HasUrl, Nothing]): RequestBuilder[HasUrl, Nothing]

    Permalink
    Attributes
    protected[featherbed]
    Definition Classes
    RequestSyntax
  8. def buildRequest(implicit canBuild: Client.CanBuildRequest[Client.HeadRequest]): ValidatedNel[Throwable, Request]

    Permalink
    Attributes
    protected[featherbed]
    Definition Classes
    RequestSyntax
  9. val charset: Charset

    Permalink
    Definition Classes
    HeadRequestRequestSyntax
  10. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def decodeResponse[T](rep: Response)(implicit decodeAll: DecodeAll[T, Nothing]): Future[T]

    Permalink
    Attributes
    protected
    Definition Classes
    RequestSyntax
  12. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  13. def finalize(): Unit

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

    Permalink
    Definition Classes
    AnyRef → Any
  15. val headers: List[(String, String)]

    Permalink
    Definition Classes
    HeadRequestRequestSyntax
  16. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  17. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  18. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  19. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  20. def send()(implicit canBuild: Client.CanBuildRequest[Client.HeadRequest], decodeAll: DecodeAll[Response, Nothing]): Future[Response]

    Permalink
  21. def sendRequest[Error, Success](implicit canBuild: Client.CanBuildRequest[Client.HeadRequest], decodeAllSuccess: DecodeAll[Success, Nothing], decodeAllError: DecodeAll[Error, Nothing]): Future[Either[Error, Success]]

    Permalink
    Attributes
    protected
    Definition Classes
    RequestSyntax
  22. def sendRequest[K](implicit canBuild: Client.CanBuildRequest[Client.HeadRequest], decodeAll: DecodeAll[K, Nothing]): Future[K]

    Permalink

    Send the request, decoding the response as K

    Send the request, decoding the response as K

    K

    The type to which the response will be decoded

    returns

    A future which will contain a validated response

    Attributes
    protected
    Definition Classes
    RequestSyntax
  23. def sendZipRequest[Error, Success](implicit canBuild: Client.CanBuildRequest[Client.HeadRequest], decodeAllSuccess: DecodeAll[Success, Nothing], decodeAllError: DecodeAll[Error, Nothing]): Future[(Either[Error, Success], Response)]

    Permalink
    Attributes
    protected
    Definition Classes
    RequestSyntax
  24. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  25. val url: URL

    Permalink
    Definition Classes
    HeadRequestRequestSyntax
  26. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  29. def withCharset(charset: Charset): Client.HeadRequest

    Permalink
    Definition Classes
    HeadRequestRequestSyntax
  30. def withHeader(name: String, value: String): Client.HeadRequest

    Permalink
    Definition Classes
    RequestSyntax
  31. def withHeaders(addHeaders: (String, String)*): Client.HeadRequest

    Permalink
    Definition Classes
    HeadRequestRequestSyntax
  32. def withQuery(query: String): Client.HeadRequest

    Permalink
    Definition Classes
    RequestSyntax
  33. def withQueryParams(params: (String, String)*): Client.HeadRequest

    Permalink
    Definition Classes
    RequestSyntax
  34. def withQueryParams(params: List[(String, String)]): Client.HeadRequest

    Permalink
    Definition Classes
    RequestSyntax
  35. def withUrl(url: URL): Client.HeadRequest

    Permalink
    Definition Classes
    HeadRequestRequestSyntax

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped