com.twitter.summingbird.builder

SourceBuilder

case class SourceBuilder[T] extends Serializable with Product with Serializable

Linear Supertypes
Serializable, Product, Equals, Serializable, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. SourceBuilder
  2. Serializable
  3. Product
  4. Equals
  5. Serializable
  6. AnyRef
  7. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

    Definition Classes
    AnyRef → Any
  4. def ++(other: SourceBuilder[T]): SourceBuilder[T]

  5. final def ==(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  6. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  7. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  8. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  9. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  10. def filter(fn: (T) ⇒ Boolean): SourceBuilder[T]

  11. def finalize(): Unit

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws()
  12. def flatMap[U](fn: (T) ⇒ TraversableOnce[U])(implicit arg0: Manifest[U]): SourceBuilder[U]

  13. def flatMapBuilder[U](newFlatMapper: FlatMapper[T, U])(implicit arg0: Manifest[U]): SourceBuilder[U]

  14. final def getClass(): Class[_]

    Definition Classes
    AnyRef → Any
  15. def groupAndSumTo[K, V](store: CompoundStore[K, V])(implicit ev: <:<[T, (K, V)], env: Env, keyMf: Manifest[K], valMf: Manifest[V], keyCodec: Injection[K, Array[Byte]], valCodec: Injection[V, Array[Byte]], batcher: Batcher, monoid: Monoid[V]): CompletedBuilder[_, K, V]

    Complete this builder instance with a CompoundStore.

    Complete this builder instance with a CompoundStore. At this point, the Summingbird job can be executed on Storm or Hadoop.

  16. def groupAndSumTo[K, V](store: ⇒ MergeableStore[(K, BatchID), V])(implicit ev: <:<[T, (K, V)], env: Env, keyMf: Manifest[K], valMf: Manifest[V], keyCodec: Injection[K, Array[Byte]], valCodec: Injection[V, Array[Byte]], batcher: Batcher, monoid: Monoid[V]): CompletedBuilder[_, K, V]

    Complete this builder instance with a MergeableStore.

    Complete this builder instance with a MergeableStore. At this point, the Summingbird job can be executed on Storm.

  17. def groupAndSumTo[K, V](store: BatchedScaldingStore[K, V])(implicit ev: <:<[T, (K, V)], env: Env, keyMf: Manifest[K], valMf: Manifest[V], keyCodec: Injection[K, Array[Byte]], valCodec: Injection[V, Array[Byte]], batcher: Batcher, monoid: Monoid[V]): CompletedBuilder[_, K, V]

    Complete this builder instance with a BatchStore.

    Complete this builder instance with a BatchStore. At this point, the Summingbird job can be executed on Hadoop.

  18. val id: String

  19. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  20. def leftJoin[K, V, JoinedValue](service: CompoundService[K, JoinedValue])(implicit ev: <:<[T, (K, V)], keyMf: Manifest[K], valMf: Manifest[V], joinedMf: Manifest[JoinedValue]): SourceBuilder[(K, (V, Option[JoinedValue]))]

  21. def map[U](fn: (T) ⇒ U)(implicit arg0: Manifest[U]): SourceBuilder[U]

  22. final def ne(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  23. val node: Node[T]

  24. final def notify(): Unit

    Definition Classes
    AnyRef
  25. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  26. val opts: Map[String, Options]

  27. val pairs: List[InjectionPair[_]]

  28. def set(opt: Any): SourceBuilder[T]

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

    Definition Classes
    AnyRef
  30. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws()
  33. def write[U](sink: CompoundSink[U])(conversion: (T) ⇒ TraversableOnce[U])(implicit batcher: Batcher, mf: Manifest[U]): SourceBuilder[T]

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped