Packages

trait RequestBuilding extends TransformerPipelineSupport

Source
RequestBuilding.scala
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RequestBuilding
  2. TransformerPipelineSupport
  3. AnyRef
  4. Any
Implicitly
  1. by WithTransformation
  2. by WithTransformation
  3. by any2stringadd
  4. by StringFormat
  5. by Ensuring
  6. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. class RequestBuilder extends AnyRef
  2. type RequestTransformer = (HttpRequest) => HttpRequest
  3. implicit class WithTransformation[A] extends AnyRef
    Definition Classes
    TransformerPipelineSupport
  4. implicit class WithTransformerConcatenation[A, B] extends (A) => B
    Definition Classes
    TransformerPipelineSupport

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from RequestBuilding toany2stringadd[RequestBuilding] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (RequestBuilding, B)
    Implicit
    This member is added by an implicit conversion from RequestBuilding toArrowAssoc[RequestBuilding] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. val Delete: RequestBuilder
  7. val Get: RequestBuilder
  8. val Head: RequestBuilder
  9. val Options: RequestBuilder
  10. val Patch: RequestBuilder
  11. val Post: RequestBuilder
  12. val Put: RequestBuilder
  13. def addAttribute[T](key: AttributeKey[T], value: T): RequestTransformer
  14. def addCredentials(credentials: HttpCredentials): RequestTransformer
  15. def addHeader(headerName: String, headerValue: String): RequestTransformer
  16. def addHeader(header: HttpHeader): RequestTransformer
  17. def addHeaders(first: HttpHeader, more: HttpHeader*): RequestTransformer
  18. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  19. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  20. def ensuring(cond: (RequestBuilding) => Boolean, msg: => Any): RequestBuilding
    Implicit
    This member is added by an implicit conversion from RequestBuilding toEnsuring[RequestBuilding] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  21. def ensuring(cond: (RequestBuilding) => Boolean): RequestBuilding
    Implicit
    This member is added by an implicit conversion from RequestBuilding toEnsuring[RequestBuilding] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  22. def ensuring(cond: Boolean, msg: => Any): RequestBuilding
    Implicit
    This member is added by an implicit conversion from RequestBuilding toEnsuring[RequestBuilding] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  23. def ensuring(cond: Boolean): RequestBuilding
    Implicit
    This member is added by an implicit conversion from RequestBuilding toEnsuring[RequestBuilding] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  24. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  25. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  26. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  27. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from RequestBuilding toStringFormat[RequestBuilding] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  28. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  29. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  30. implicit def header2AddHeader(header: HttpHeader): RequestTransformer
  31. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  32. def logRequest(logFun: (HttpRequest) => Unit): (HttpRequest) => HttpRequest
  33. def logRequest(log: LoggingAdapter, level: LogLevel = Logging.DebugLevel): (HttpRequest) => HttpRequest
  34. def logValue[T](logFun: (T) => Unit): (T) => T
    Definition Classes
    TransformerPipelineSupport
  35. def logValue[T](log: LoggingAdapter, level: LogLevel = Logging.DebugLevel): (T) => T
    Definition Classes
    TransformerPipelineSupport
  36. def mapHeaders(f: (Seq[HttpHeader]) => Seq[HttpHeader]): RequestTransformer
  37. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  38. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  39. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  40. def removeHeader(clazz: Class[_]): RequestTransformer
  41. def removeHeader[T <: HttpHeader](implicit arg0: ClassTag[T]): RequestTransformer
  42. def removeHeader(headerName: String): RequestTransformer
  43. def removeHeaders(names: String*): RequestTransformer
  44. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  45. def toString(): String
    Definition Classes
    AnyRef → Any
  46. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  47. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  48. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()

Shadowed Implicit Value Members

  1. def ~>[B](f: (RequestBuilding) => B): B
    Implicit
    This member is added by an implicit conversion from RequestBuilding toRequestBuilding.WithTransformation[RequestBuilding] performed by method WithTransformation in akka.http.scaladsl.client.TransformerPipelineSupport.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (requestBuilding: RequestBuilding.WithTransformation[RequestBuilding]).~>(f)
    Definition Classes
    WithTransformation
  2. def ~>[B](f: (RequestBuilding) => B): B
    Implicit
    This member is added by an implicit conversion from RequestBuilding toTransformerPipelineSupport.WithTransformation[RequestBuilding] performed by method WithTransformation in akka.http.scaladsl.client.TransformerPipelineSupport.
    Shadowing
    This implicitly inherited member is ambiguous. One or more implicitly inherited members have similar signatures, so calling this member may produce an ambiguous implicit conversion compiler error.
    To access this member you can use a type ascription:
    (requestBuilding: TransformerPipelineSupport.WithTransformation[RequestBuilding]).~>(f)
    Definition Classes
    WithTransformation

Deprecated Value Members

  1. def [B](y: B): (RequestBuilding, B)
    Implicit
    This member is added by an implicit conversion from RequestBuilding toArrowAssoc[RequestBuilding] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion WithTransformation fromRequestBuilding to RequestBuilding.WithTransformation[RequestBuilding]

Inherited by implicit conversion WithTransformation fromRequestBuilding to TransformerPipelineSupport.WithTransformation[RequestBuilding]

Inherited by implicit conversion any2stringadd fromRequestBuilding to any2stringadd[RequestBuilding]

Inherited by implicit conversion StringFormat fromRequestBuilding to StringFormat[RequestBuilding]

Inherited by implicit conversion Ensuring fromRequestBuilding to Ensuring[RequestBuilding]

Inherited by implicit conversion ArrowAssoc fromRequestBuilding to ArrowAssoc[RequestBuilding]

Ungrouped