Packages

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
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. Protected

Abstract Value Members

  1. abstract def entity: BodyPartEntity

    The entity of the part.

  2. abstract def headers: Seq[HttpHeader]

    The headers the part carries.

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

Concrete 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 BodyPart toany2stringadd[BodyPart] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (BodyPart, B)
    Implicit
    This member is added by an implicit conversion from BodyPart toArrowAssoc[BodyPart] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @HotSpotIntrinsicCandidate() @native()
  8. def contentDispositionHeader: Option[Content-Disposition]

    The potentially present `Content-Disposition` header.

  9. def dispositionParams: Map[String, String]

    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]

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

  11. def ensuring(cond: (BodyPart) => Boolean, msg: => Any): BodyPart
    Implicit
    This member is added by an implicit conversion from BodyPart toEnsuring[BodyPart] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. def ensuring(cond: (BodyPart) => Boolean): BodyPart
    Implicit
    This member is added by an implicit conversion from BodyPart toEnsuring[BodyPart] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  13. def ensuring(cond: Boolean, msg: => Any): BodyPart
    Implicit
    This member is added by an implicit conversion from BodyPart toEnsuring[BodyPart] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  14. def ensuring(cond: Boolean): BodyPart
    Implicit
    This member is added by an implicit conversion from BodyPart toEnsuring[BodyPart] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  15. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  16. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  17. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  18. def getContentDispositionHeader(): Optional[ContentDisposition]

    Java API

    Java API

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

    Java API

    Java API

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

    Java API

    Java API

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

    Java API

    Java API

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

    Java API

    Java API

    Definition Classes
    BodyPart → BodyPart
  23. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  24. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  25. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  26. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  27. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @HotSpotIntrinsicCandidate() @native()
  28. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  29. def toStrict(timeoutMillis: Long, materializer: Materializer): CompletionStage[_ <: javadsl.model.Multipart.BodyPart.Strict]

    Java API

    Java API

    Definition Classes
    BodyPart → BodyPart
  30. def toString(): String
    Definition Classes
    AnyRef → Any
  31. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  32. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  33. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from BodyPart toStringFormat[BodyPart] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  3. def [B](y: B): (BodyPart, B)
    Implicit
    This member is added by an implicit conversion from BodyPart toArrowAssoc[BodyPart] 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 javadsl.model.Multipart.BodyPart

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromBodyPart to any2stringadd[BodyPart]

Inherited by implicit conversion StringFormat fromBodyPart to StringFormat[BodyPart]

Inherited by implicit conversion Ensuring fromBodyPart to Ensuring[BodyPart]

Inherited by implicit conversion ArrowAssoc fromBodyPart to ArrowAssoc[BodyPart]

Ungrouped