Packages

c

akka.http.javadsl.common

CsvEntityStreamingSupport

abstract class CsvEntityStreamingSupport extends scaladsl.common.EntityStreamingSupport

Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CsvEntityStreamingSupport
  2. EntityStreamingSupport
  3. EntityStreamingSupport
  4. AnyRef
  5. 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

Instance Constructors

  1. new CsvEntityStreamingSupport()

Abstract Value Members

  1. abstract def contentType: ContentType

    Write-side, defines what Content-Type the Marshaller should offer and the final Content-Type of the response.

    Write-side, defines what Content-Type the Marshaller should offer and the final Content-Type of the response.

    Definition Classes
    EntityStreamingSupportEntityStreamingSupport
  2. abstract def framingDecoder: Flow[ByteString, ByteString, NotUsed]

    Read-side, decode incoming framed entity.

    Read-side, decode incoming framed entity. For example with an incoming JSON array, chunk it up into JSON objects contained within that array.

    Definition Classes
    EntityStreamingSupport
  3. abstract def framingRenderer: Flow[ByteString, ByteString, NotUsed]

    Write-side, apply framing to outgoing entity stream.

    Write-side, apply framing to outgoing entity stream.

    Most typical usage will be a variant of Flow[ByteString].intersperse.

    For example for rendering a JSON array one would return Flow[ByteString].intersperse(ByteString("["), ByteString(","), ByteString("]")) and for rendering a new-line separated CSV simply Flow[ByteString].intersperse(ByteString("\n")).

    Definition Classes
    EntityStreamingSupport
  4. abstract def parallelism: Int

    Write-side / read-side, defines if (un)marshalling should be done in parallel.

    Write-side / read-side, defines if (un)marshalling should be done in parallel.

    This may be beneficial marshalling the bottleneck in the pipeline.

    See also parallelism and withParallelMarshalling.

    Definition Classes
    EntityStreamingSupportEntityStreamingSupport
  5. abstract def supported: ContentTypeRange

    Read-side, what content types it is able to frame and unmarshall.

    Read-side, what content types it is able to frame and unmarshall.

    Definition Classes
    EntityStreamingSupportEntityStreamingSupport
  6. abstract def unordered: Boolean

    Write-side / read-side, defines if (un)marshalling should preserve ordering of incoming stream elements.

    Write-side / read-side, defines if (un)marshalling should preserve ordering of incoming stream elements.

    Allowing for parallel and unordered (un)marshalling often yields higher throughput and also allows avoiding head-of-line blocking if some elements are much larger than others.

    See also parallelism and withParallelMarshalling.

    Definition Classes
    EntityStreamingSupportEntityStreamingSupport
  7. abstract def withContentType(range: ContentType): scaladsl.common.EntityStreamingSupport

    Write-side, defines what Content-Type the Marshaller should offer and the final Content-Type of the response.

    Write-side, defines what Content-Type the Marshaller should offer and the final Content-Type of the response.

    EntityStreamingSupport traits MUST support re-configuring the offered ContentType. This is due to the need integrating with existing systems which sometimes expect custom Content-Types, however really are just plain JSON or something else internally (perhaps with slight extensions).

    NOTE: Implementations should specialize the return type to their own Type!

    Definition Classes
    EntityStreamingSupportEntityStreamingSupport
  8. abstract def withFramingRendererFlow(flow: Flow[ByteString, ByteString, NotUsed]): CsvEntityStreamingSupport

    Java API: Write-side, apply framing to outgoing entity stream.

    Java API: Write-side, apply framing to outgoing entity stream.

    Most typical usage will be a variant of Flow[ByteString].intersperse.

    For example for rendering a JSON array one would return Flow[ByteString].intersperse(ByteString("["), ByteString(","), ByteString("]")) and for rendering a new-line separated CSV simply Flow[ByteString].intersperse(ByteString("\n")).

  9. abstract def withParallelMarshalling(parallelism: Int, unordered: Boolean): scaladsl.common.EntityStreamingSupport

    Write-side / read-side, defines parallelism and if ordering should be preserved or not of Source element marshalling.

    Write-side / read-side, defines parallelism and if ordering should be preserved or not of Source element marshalling.

    Sometimes marshalling multiple elements at once (esp. when elements are not evenly sized, and ordering is not enforced) may yield in higher throughput.

    NOTE: Implementations should specialize the return type to their own Type!

    Definition Classes
    EntityStreamingSupportEntityStreamingSupport
  10. abstract def withSupported(range: ContentTypeRange): scaladsl.common.EntityStreamingSupport

    Read-side, allows changing what content types are accepted by this framing.

    Read-side, allows changing what content types are accepted by this framing.

    EntityStreamingSupport traits MUST support re-configuring the accepted ContentTypeRange.

    This is in order to support a-typical APIs which users still want to communicate with using the provided support trait. Typical examples include APIs which return valid application/json however advertise the content type as being application/javascript or vendor specific content types, which still parse correctly as JSON, CSV or something else that a provided support trait is built for.

    NOTE: Implementations should specialize the return type to their own Type!

    Definition Classes
    EntityStreamingSupportEntityStreamingSupport

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 CsvEntityStreamingSupport to any2stringadd[CsvEntityStreamingSupport] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (CsvEntityStreamingSupport, B)
    Implicit
    This member is added by an implicit conversion from CsvEntityStreamingSupport to ArrowAssoc[CsvEntityStreamingSupport] 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( ... ) @native()
  8. def ensuring(cond: (CsvEntityStreamingSupport) ⇒ Boolean, msg: ⇒ Any): CsvEntityStreamingSupport
    Implicit
    This member is added by an implicit conversion from CsvEntityStreamingSupport to Ensuring[CsvEntityStreamingSupport] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  9. def ensuring(cond: (CsvEntityStreamingSupport) ⇒ Boolean): CsvEntityStreamingSupport
    Implicit
    This member is added by an implicit conversion from CsvEntityStreamingSupport to Ensuring[CsvEntityStreamingSupport] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  10. def ensuring(cond: Boolean, msg: ⇒ Any): CsvEntityStreamingSupport
    Implicit
    This member is added by an implicit conversion from CsvEntityStreamingSupport to Ensuring[CsvEntityStreamingSupport] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  11. def ensuring(cond: Boolean): CsvEntityStreamingSupport
    Implicit
    This member is added by an implicit conversion from CsvEntityStreamingSupport to Ensuring[CsvEntityStreamingSupport] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  12. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  13. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  14. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from CsvEntityStreamingSupport to StringFormat[CsvEntityStreamingSupport] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @inline()
  16. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. final def getFramingDecoder: Flow[ByteString, ByteString, NotUsed]

    Read-side, decode incoming framed entity.

    Read-side, decode incoming framed entity. For example with an incoming JSON array, chunk it up into JSON objects contained within that array.

    Definition Classes
    EntityStreamingSupportEntityStreamingSupport
  18. final def getFramingRenderer: Flow[ByteString, ByteString, NotUsed]

    Write-side, apply framing to outgoing entity stream.

    Write-side, apply framing to outgoing entity stream.

    Most typical usage will be a variant of Flow[ByteString].intersperse.

    For example for rendering a JSON array one would return Flow[ByteString].intersperse(ByteString("["), ByteString(","), ByteString("]")) and for rendering a new-line separated CSV simply Flow[ByteString].intersperse(ByteString("\n")).

    Definition Classes
    EntityStreamingSupportEntityStreamingSupport
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  25. def toString(): String
    Definition Classes
    AnyRef → Any
  26. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  27. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  28. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  29. def [B](y: B): (CsvEntityStreamingSupport, B)
    Implicit
    This member is added by an implicit conversion from CsvEntityStreamingSupport to ArrowAssoc[CsvEntityStreamingSupport] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc

Inherited from EntityStreamingSupport

Inherited from AnyRef

Inherited from Any

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

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

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

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

Ungrouped