Object

scalut.akka.stream.xml

Xml

Related Doc: package xml

Permalink

object Xml

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Xml
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. final case class CData(text: String) extends TextEvent with Product with Serializable

    Permalink
  2. final case class Characters(text: String) extends TextEvent with Product with Serializable

    Permalink
  3. final case class Comment(text: String) extends ParseEvent with Product with Serializable

    Permalink
  4. final case class EndElement(localName: String) extends ParseEvent with Product with Serializable

    Permalink
  5. sealed trait ParseEvent extends AnyRef

    Permalink

    XML parsing events emitted by the parser flow.

    XML parsing events emitted by the parser flow. These roughly correspond to Java XMLEvent types.

  6. final case class ProcessingInstruction(target: Option[String], data: Option[String]) extends ParseEvent with Product with Serializable

    Permalink
  7. final case class StartElement(localName: String, attributes: Map[String, String]) extends ParseEvent with Product with Serializable

    Permalink
  8. sealed trait TextEvent extends ParseEvent

    Permalink

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object EndDocument extends ParseEvent with Product with Serializable

    Permalink
  5. object StartDocument extends ParseEvent with Product with Serializable

    Permalink
  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 coalesce(maximumTextLength: Int): Flow[ParseEvent, ParseEvent, NotUsed]

    Permalink

    A Flow that transforms a stream of XML ParseEvents.

    A Flow that transforms a stream of XML ParseEvents. This stage coalesces consequitive CData and Characters events into a single Characters event or fails if the buffered string is larger than the maximum defined.

  9. final def eq(arg0: AnyRef): Boolean

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  12. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  13. def hashCode(): Int

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  18. val parser: Flow[ByteString, ParseEvent, NotUsed]

    Permalink

    Parser Flow that takes a stream of ByteStrings and parses them to XML events similar to SAX.

  19. def subslice(path: Seq[String]): Flow[ParseEvent, ParseEvent, NotUsed]

    Permalink

    A Flow that transforms a stream of XML ParseEvents.

    A Flow that transforms a stream of XML ParseEvents. This stage filters out any event not corresponding to a certain path in the XML document. Any event that is under the specified path (including subpaths) is passed through.

  20. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  21. def toString(): String

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped