com.twitter.summingbird.builder

SourceBuilder

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

Source
SourceBuilder.scala
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( classOf[java.lang.Throwable] )
  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. def flatMapKeys[K1, K2, V](fn: (K1) ⇒ TraversableOnce[K2])(implicit ev: <:<[T, (K1, V)], key1Mf: Manifest[K1], key2Mf: Manifest[K2], valMf: Manifest[V]): SourceBuilder[(K2, V)]

    This may be more efficient if you know you are not changing the values in you flatMap.

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

    Definition Classes
    AnyRef → Any
  16. def groupAndSumTo[K, V](store: CompoundStore[K, V])(implicit ev: <:<[T, (K, V)], env: Env, keyMf: Manifest[K], valMf: Manifest[V], keyCodec: Codec[K], valCodec: Codec[V], 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.

  17. def groupAndSumTo[K, V](store: ⇒ MergeableStore[(K, BatchID), V])(implicit ev: <:<[T, (K, V)], env: Env, keyMf: Manifest[K], valMf: Manifest[V], keyCodec: Codec[K], valCodec: Codec[V], 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.

  18. def groupAndSumTo[K, V](store: BatchedStore[K, V])(implicit ev: <:<[T, (K, V)], env: Env, keyMf: Manifest[K], valMf: Manifest[V], keyCodec: Codec[K], valCodec: Codec[V], 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.

  19. val id: String

  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. 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]))]

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

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

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

  25. final def notify(): Unit

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

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

  28. val registrar: IKryoRegistrar

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

    Set's an Option on all nodes ABOVE this point

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

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  34. def write(sink: CompoundSink[T])(implicit batcher: Batcher): SourceBuilder[T]

  35. 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