Trait/Object

akka.http.scaladsl.model.Multipart

BodyPart

Related Docs: object BodyPart | package Multipart

Permalink

trait BodyPart extends javadsl.model.Multipart.BodyPart

The general model for a single part of a multipart message.

Source
Multipart.scala
Linear Supertypes
javadsl.model.Multipart.BodyPart, AnyRef, Any
Known Subclasses
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. BodyPart
  2. BodyPart
  3. AnyRef
  4. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type Strict = javadsl.model.Multipart.BodyPart.Strict

    Permalink
    Attributes
    protected
    Definition Classes
    BodyPart

Abstract Value Members

  1. abstract def entity: BodyPartEntity

    Permalink

    The entity of the part.

  2. abstract def headers: Seq[HttpHeader]

    Permalink

    The headers the part carries.

  3. abstract def toStrict(timeout: FiniteDuration)(implicit fm: Materializer): Future[BodyPart.Strict]

    Permalink

Concrete Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from BodyPart to any2stringadd[BodyPart] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (BodyPart, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from BodyPart to ArrowAssoc[BodyPart] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  7. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def contentDispositionHeader: Option[Content-Disposition]

    Permalink

    The potentially present `Content-Disposition` header.

  9. def dispositionParams: Map[String, String]

    Permalink

    The parameters of the potentially present `Content-Disposition` header.

    The parameters of the potentially present `Content-Disposition` header. Returns an empty map if no such header is present.

  10. def dispositionType: Option[ContentDispositionType]

    Permalink

    The akka.http.scaladsl.model.headers.ContentDispositionType of the potentially present `Content-Disposition` header.

  11. def ensuring(cond: (BodyPart) ⇒ Boolean, msg: ⇒ Any): BodyPart

    Permalink
    Implicit information
    This member is added by an implicit conversion from BodyPart to Ensuring[BodyPart] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (BodyPart) ⇒ Boolean): BodyPart

    Permalink
    Implicit information
    This member is added by an implicit conversion from BodyPart to Ensuring[BodyPart] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: ⇒ Any): BodyPart

    Permalink
    Implicit information
    This member is added by an implicit conversion from BodyPart to Ensuring[BodyPart] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): BodyPart

    Permalink
    Implicit information
    This member is added by an implicit conversion from BodyPart to Ensuring[BodyPart] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  17. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  18. def formatted(fmtstr: String): String

    Permalink
    Implicit information
    This member is added by an implicit conversion from BodyPart to StringFormat[BodyPart] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  19. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  20. def getContentDispositionHeader(): Optional[ContentDisposition]

    Permalink

    Java API

    Java API

    Definition Classes
    BodyPart → BodyPart
  21. def getDispositionParams(): Map[String, String]

    Permalink

    Java API

    Java API

    Definition Classes
    BodyPart → BodyPart
  22. def getDispositionType(): Optional[ContentDispositionType]

    Permalink

    Java API

    Java API

    Definition Classes
    BodyPart → BodyPart
  23. def getEntity(): javadsl.model.BodyPartEntity

    Permalink

    Java API

    Java API

    Definition Classes
    BodyPart → BodyPart
  24. def getHeaders(): Iterable[javadsl.model.HttpHeader]

    Permalink

    Java API

    Java API

    Definition Classes
    BodyPart → BodyPart
  25. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  26. final def isInstanceOf[T0]: Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  31. def toStrict(timeoutMillis: Long, materializer: Materializer): CompletionStage[_ <: javadsl.model.Multipart.BodyPart.Strict]

    Permalink

    Java API

    Java API

    Definition Classes
    BodyPart → BodyPart
  32. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  33. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  36. def [B](y: B): (BodyPart, B)

    Permalink
    Implicit information
    This member is added by an implicit conversion from BodyPart to ArrowAssoc[BodyPart] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from javadsl.model.Multipart.BodyPart

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd from BodyPart to any2stringadd[BodyPart]

Inherited by implicit conversion StringFormat from BodyPart to StringFormat[BodyPart]

Inherited by implicit conversion Ensuring from BodyPart to Ensuring[BodyPart]

Inherited by implicit conversion ArrowAssoc from BodyPart to ArrowAssoc[BodyPart]

Ungrouped