com.socrata

iteratee

package iteratee

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

Type Members

  1. class ByteCharEnumeratee[T] extends ByteIteratee[T]

    An Enumeratee which reads character data out of a byte stream and passes them down in chunks to a secondary com.socrata.iteratee.Iteratee.

  2. type ByteIteratee[T] = Iteratee[Array[Byte], T]

  3. type CharIteratee[T] = Iteratee[WrappedCharArray, T]

  4. class CharJArrayElementEnumeratee[T] extends CharIteratee[T]

    An Enumeratee which reads the elements out of a character stream representing a JSON array and passes them down to a secondary com.socrata.iteratee.Iteratee, throwing exceptions if the data is not well-formed.

  5. class CharJValueEnumeratee[T] extends CharIteratee[T]

    An com.socrata.iteratee.Iteratee (actually an Enumeratee) that reads a JSON data out of the stream of com.rojoma.json.util.WrappedCharArrays which it consumes, and passes them on to a secondary com.socrata.iteratee.Iteratee for further processing, throwing exceptions if the data is not well-formed.

  6. class IdentityIteratee[T] extends Iteratee[T, T]

    An com.socrata.iteratee.Iteratee that simply finishes with the first value passed to it.

  7. trait Iteratee[-I, +O] extends AnyRef

    An Iteratee represents a computation over a stream of data.

  8. class JValueIteratee extends CharJValueEnumeratee[JValue]

    Returns the first complete JSON value that can be read from a character stream.

  9. class StringIteratee extends CharIteratee[String]

Value Members

  1. object CharJValueEnumeratee

  2. object JValueIteratee

Inherited from AnyRef

Inherited from Any

Ungrouped