Package

io

eels

Permalink

package eels

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. eels
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Type Members

  1. trait Buffer extends AnyRef

    Permalink

    A Buffer represents a stream of Rows, read one row at a time.

    A Buffer represents a stream of Rows, read one row at a time. A Buffer is thread safe, that is, multiple iterators can be created and accessed concurrently from the same source buffer.

  2. case class Column(name: String, type: SchemaType, nullable: Boolean, precision: Int = 0, scale: Int = 0, signed: Boolean = true, comment: Option[String] = None) extends Product with Serializable

    Permalink
  3. case class FilePattern(pattern: String, filter: Option[(Path) ⇒ Boolean] = None) extends StrictLogging with Product with Serializable

    Permalink
  4. trait Frame extends AnyRef

    Permalink
  5. case class FrameSchema(columns: List[Column]) extends Product with Serializable

    Permalink
  6. trait Part extends AnyRef

    Permalink

    A Part represents part of the source data.

    A Part represents part of the source data. Eg a single path in a multifile source, or a single table in a multitable source. A part provides a reader when requested.

  7. trait Reader extends AnyRef

    Permalink

    A one time usable reader of data.

    A one time usable reader of data. Clients must call close() when terminating the reader, even if the end of the iterator has been reached.

  8. type Row = Seq[Any]

    Permalink
  9. sealed trait SchemaType extends AnyRef

    Permalink
  10. trait Sink extends AnyRef

    Permalink
  11. trait SinkParser[T <: Sink] extends AnyRef

    Permalink
  12. trait Source extends StrictLogging

    Permalink
  13. trait SourceParser[T <: Source] extends AnyRef

    Permalink
  14. class SqlContext extends AnyRef

    Permalink
  15. trait Writer extends AnyRef

    Permalink

Value Members

  1. object Column extends Serializable

    Permalink
  2. object FilePattern extends Serializable

    Permalink
  3. object Frame

    Permalink
  4. object FrameSchema extends Serializable

    Permalink
  5. object HdfsIterator

    Permalink
  6. object HdfsOps

    Permalink
  7. object MetricsSystem

    Permalink
  8. object PathIterator

    Permalink
  9. object Row

    Permalink
  10. object RowUtils

    Permalink
  11. object SchemaType

    Permalink
  12. object Source

    Permalink
  13. object SourceParser

    Permalink
  14. object SqlContext

    Permalink
  15. package component

    Permalink
  16. package plan

    Permalink

Inherited from AnyRef

Inherited from Any

Ungrouped