com.twitter.summingbird.planner

Dag

case class Dag[P <: Platform[P]](originalTail: TailProducer[P, _], producerToPriorityNames: Map[Producer[P, Any], List[String]], tail: TailProducer[P, _], producerToNode: Map[Producer[P, _], Node[P]], nodes: List[Node[P]], nodeToName: Map[Node[P], String] = ..., nameToNode: Map[String, Node[P]] = ..., dependenciesOfM: Map[Node[P], List[Node[P]]] = ..., dependantsOfM: Map[Node[P], List[Node[P]]] = ...) extends Product with Serializable

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

Instance Constructors

  1. new Dag(originalTail: TailProducer[P, _], producerToPriorityNames: Map[Producer[P, Any], List[String]], tail: TailProducer[P, _], producerToNode: Map[Producer[P, _], Node[P]], nodes: List[Node[P]], nodeToName: Map[Node[P], String] = ..., nameToNode: Map[String, Node[P]] = ..., dependenciesOfM: Map[Node[P], List[Node[P]]] = ..., dependantsOfM: Map[Node[P], List[Node[P]]] = ...)

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. final def ==(arg0: AnyRef): Boolean

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

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

    Definition Classes
    Any
  7. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  8. def connect(src: Producer[P, _], dest: Producer[P, _]): Dag[P]

  9. def connect(src: Node[P], dest: Node[P]): Dag[P]

  10. def dependantsOf(p: Producer[P, _]): Option[List[Producer[P, Any]]]

  11. def dependantsOf(n: Node[P]): List[Node[P]]

  12. val dependantsOfM: Map[Node[P], List[Node[P]]]

  13. def dependenciesOf(p: Producer[P, _]): List[Producer[P, Any]]

  14. def dependenciesOf(n: Node[P]): List[Node[P]]

  15. val dependenciesOfM: Map[Node[P], List[Node[P]]]

  16. final def eq(arg0: AnyRef): Boolean

    Definition Classes
    AnyRef
  17. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  19. def getNodeName(n: Node[P]): String

  20. final def isInstanceOf[T0]: Boolean

    Definition Classes
    Any
  21. def locate(p: Producer[P, _]): Node[P]

  22. def locateOpt(p: Producer[P, _]): Option[Node[P]]

  23. val nameToNode: Map[String, Node[P]]

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

    Definition Classes
    AnyRef
  25. val nodeToName: Map[Node[P], String]

  26. val nodes: List[Node[P]]

  27. final def notify(): Unit

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

    Definition Classes
    AnyRef
  29. val originalTail: TailProducer[P, _]

  30. lazy val producerDependants: Dependants[P]

  31. val producerToNode: Map[Producer[P, _], Node[P]]

  32. val producerToPriorityNames: Map[Producer[P, Any], List[String]]

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

    Definition Classes
    AnyRef
  34. val tail: TailProducer[P, _]

  35. def tailN: Node[P]

  36. def toString(): String

    Definition Classes
    Dag → AnyRef → Any
  37. def toStringWithPrefix(prefix: String): String

  38. def transitiveDependantsOf(p: Producer[P, _]): List[Producer[P, Any]]

  39. def transitiveDependenciesOf(p: Producer[P, _]): List[Producer[P, Any]]

  40. final def wait(): Unit

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from Serializable

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from AnyRef

Inherited from Any

Ungrouped