Packages

class RequestBuilder extends AnyRef

Source
RequestBuilding.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RequestBuilder
  2. AnyRef
  3. 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

Instance Constructors

  1. new RequestBuilder(method: HttpMethod)

Value Members

  1. def apply(uri: Uri, entity: RequestEntity): HttpRequest
  2. def apply[T](uri: Uri, content: Option[T])(implicit m: ToEntityMarshaller[T], timeout: Timeout = Timeout(1.second), ec: ExecutionContext): HttpRequest
  3. def apply[T](uri: Uri, content: T)(implicit m: ToEntityMarshaller[T], ec: ExecutionContext): HttpRequest
  4. def apply(uri: Uri): HttpRequest
  5. def apply(uri: String, entity: RequestEntity): HttpRequest
  6. def apply[T](uri: String, content: Option[T])(implicit m: ToEntityMarshaller[T], ec: ExecutionContext): HttpRequest
  7. def apply[T](uri: String, content: T)(implicit m: ToEntityMarshaller[T], ec: ExecutionContext): HttpRequest
  8. def apply(uri: String): HttpRequest
  9. def apply(): HttpRequest
  10. val method: HttpMethod

Shadowed Implicit Value Members

  1. def ~>[B](f: (RequestBuilder) => B): B
    Implicit
    This member is added by an implicit conversion from RequestBuilder toRequestBuilding.WithTransformation[RequestBuilder] 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:
    (requestBuilder: RequestBuilding.WithTransformation[RequestBuilder]).~>(f)
    Definition Classes
    WithTransformation
  2. def ~>[B](f: (RequestBuilder) => B): B
    Implicit
    This member is added by an implicit conversion from RequestBuilder toTransformerPipelineSupport.WithTransformation[RequestBuilder] 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:
    (requestBuilder: TransformerPipelineSupport.WithTransformation[RequestBuilder]).~>(f)
    Definition Classes
    WithTransformation