Object/Trait

com.twitter.summingbird.memory

PhysicalNode

Related Docs: trait PhysicalNode | package memory

Permalink

object PhysicalNode

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

Type Members

  1. case class FanOut[T](targets: Seq[PhysicalNode[T]]) extends PhysicalNode[T] with Product with Serializable

    Permalink

    This is a convenience that pushes each item it receieves a sequence of other PhysicalNodes.

    This is a convenience that pushes each item it receieves a sequence of other PhysicalNodes. This is so we don't have to deal with the notion of fan-out on the summingbird graph (multiple consumers from a single node) in each type of node.

  2. case class FlatMap[I, O](fn: (I) ⇒ TraversableOnce[O], target: PhysicalNode[O]) extends PhysicalNode[I] with Product with Serializable

    Permalink

    This is the PhysicalNode that implements flatMap and sends it on to the next Node.

  3. case class Join[K, V, W](service: (K) ⇒ Option[W], target: PhysicalNode[(K, (V, Option[W]))]) extends PhysicalNode[(K, V)] with Product with Serializable

    Permalink
  4. case class SourceNode[O](data: TraversableOnce[O], next: PhysicalNode[O]) extends ConcurrentMemoryPlan with PhysicalNode[Nothing] with Product with Serializable

    Permalink
  5. case class Sum[K, V](store: ConcurrentHashMap[K, V], sg: Semigroup[V], target: PhysicalNode[(K, (Option[V], V))]) extends PhysicalNode[(K, V)] with Product with Serializable

    Permalink
  6. case class Writer[T](queue: BlockingQueue[T], target: PhysicalNode[T]) extends PhysicalNode[T] with Product with Serializable

    Permalink

    This does a write and after that succeeds, pushes onto the next node (which may be the NullTarget)

Value Members

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object NullTarget extends PhysicalNode[Any] with Product with Serializable

    Permalink

    This target is the end of the line for a target that has no dependants.

  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 equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. final def notify(): Unit

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

    Permalink
    Definition Classes
    AnyRef
  16. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  17. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped