jawnstreamz

package jawnstreamz

Integrates the Jawn parser with scalaz-stream

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. jawnstreamz
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Type Members

  1. trait Absorbable[A] extends AnyRef

    Type class that can be absorbed by a Jawn AsyncParser.

  2. implicit class JsonSourceSyntax[F[_], O] extends AnyRef

    Suffix syntax and convenience methods for parseJson.

Value Members

  1. object Absorbable

  2. def parseJson[A, J](mode: Mode)(implicit A: Absorbable[A], facade: Facade[J]): Process1[A, J]

    Parses to any Jawn-supported AST using the specified Async mode.

    Parses to any Jawn-supported AST using the specified Async mode.

    J

    the JSON AST to return

    mode

    the async mode of the Jawn parser

    facade

    the Jawn facade to materialize J

  3. def parseJsonStream[A, J](implicit A: Absorbable[A], facade: Facade[J]): Process1[A, J]

    Emits individual JSON elements as they are parsed.

    Emits individual JSON elements as they are parsed.

    J

    the JSON AST to return

    facade

    the Jawn facade to materialize J

  4. def unwrapJsonArray[A, J](implicit A: Absorbable[A], facade: Facade[J]): Process1[A, J]

    Emits elements of an outer JSON array as they are parsed.

    Emits elements of an outer JSON array as they are parsed.

    J

    the JSON AST to return

    facade

    the Jawn facade to materialize J

Inherited from AnyRef

Inherited from Any

Ungrouped