Packages

object TextFlow

Scala DSL

Source
TextFlow.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TextFlow
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. def decoding(incoming: Charset): Flow[ByteString, String, NotUsed]

    Decodes a stream of bytes into a stream of characters, using the supplied charset.

  2. def encoding(outgoing: Charset): Flow[String, ByteString, NotUsed]

    Decodes a stream of bytes into a stream of characters, using the supplied charset.

  3. def transcoding(incoming: Charset, outgoing: Charset): Flow[ByteString, ByteString, NotUsed]

    Translates a stream of bytes from one character encoding into another.