Class/Object

com.twitter.summingbird.builder

SourceBuilder

Related Docs: object SourceBuilder | package builder

Permalink

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
Visibility
  1. Public
  2. All

Value Members

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

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

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

    Permalink
  4. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

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

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

    Permalink
  9. def finalize(): Unit

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

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

    Permalink
  12. 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)]

    Permalink

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  14. 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]

    Permalink

    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.

  15. 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]

    Permalink

    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.

  16. 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]

    Permalink

    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.

  17. val id: String

    Permalink
  18. final def isInstanceOf[T0]: Boolean

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

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

    Permalink
  21. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  22. val node: Node[T]

    Permalink
  23. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

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

    Permalink
  26. val registrar: IKryoRegistrar

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

    Permalink

    Set's an Option on all nodes ABOVE this point

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

    Permalink
    Definition Classes
    AnyRef
  29. final def wait(): Unit

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

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

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

    Permalink
  33. def write[U](sink: CompoundSink[U])(conversion: (T) ⇒ TraversableOnce[U])(implicit batcher: Batcher, mf: Manifest[U]): SourceBuilder[T]

    Permalink

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped