Packages

object Planner

Source
Planner.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Planner
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class BatchRef[K, V](batcherId: BatchKey[K, V], uniqueNodeId: UniqueBatchInstance[K, V]) extends Product with Serializable
  2. type EndTimes = Map[NodeId, Double]
  3. type H[F[_], A] = IndexedStateT[F, TraversalState, TraversalState, A]
  4. final case class Node(id: NodeId, name: String, cost: Double, elemCost: Double, parents: Set[NodeId], batchId: Option[BatchRef[_, _]]) extends Product with Serializable
  5. final case class NodeId(id: Int) extends AnyVal with Product with Serializable
  6. final case class NodeTree(all: List[Node], endTimes: EndTimes, source: Option[NodeTree] = None) extends Product with Serializable
  7. final case class TraversalState(id: Int, parents: Set[NodeId], nodes: Chain[Node]) extends Product with Serializable

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def addNode[F[_]](node: Node)(implicit S: Stateful[F, TraversalState]): F[Unit]
  5. def addNodes[F[_]](nodes: Chain[Node])(implicit S: Stateful[F, TraversalState]): F[Unit]
  6. def apply[F[_]](implicit F: Applicative[F]): Planner[F]
  7. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  8. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native()
  9. def costForCont[F[_], G[_]](edges: PreparedStep[G, _, _], cont: Prepared[G, _])(implicit arg0: Statistics[F], arg1: Monad[F], S: Stateful[F, TraversalState]): F[Unit]
  10. def costForFields[F[_], G[_]](prepared: NonEmptyList[PreparedField[G, _]])(implicit F: Monad[F], stats: Statistics[F], S: Stateful[F, TraversalState]): F[Unit]
  11. def costForPrepared[F[_], G[_]](p: Prepared[G, _])(implicit arg0: Statistics[F], F: Monad[F], S: Stateful[F, TraversalState]): F[Unit]
  12. def costForStep[F[_], G[_]](step: PreparedStep[G, _, _])(implicit stats: Statistics[F], F: Monad[F], S: Stateful[F, TraversalState]): F[Unit]
  13. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  15. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable])
  16. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  17. def getId[F[_]](implicit arg0: Applicative[F], S: Stateful[F, TraversalState]): F[NodeId]
  18. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native()
  19. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  20. def liftStatistics[F[_]](stats: Statistics[F])(implicit arg0: Applicative[F]): Statistics[[β$0$]IndexedStateT[F, TraversalState, TraversalState, β$0$]]
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native()
  24. def runCostAnalysis[F[_], A](f: (Statistics[[β$2$]IndexedStateT[F, TraversalState, TraversalState, β$2$]]) => H[F, A])(implicit arg0: Monad[F], arg1: Statistics[F]): F[NodeTree]
  25. def runCostAnalysisFor[F[_], A](f: (Statistics[[β$1$]IndexedStateT[F, TraversalState, TraversalState, β$1$]]) => H[F, A])(implicit arg0: Monad[F], stats: Statistics[F]): F[A]
  26. def setParents[F[_]](parents: Set[NodeId])(implicit S: Stateful[F, TraversalState]): F[Unit]
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  32. object NodeId extends Serializable
  33. object NodeTree extends Serializable

Inherited from AnyRef

Inherited from Any

Ungrouped