case class Schedule[A](batches: List[PhaseConfiguration[A]], initializationData: Map[ComputationSpecification[A], Any]) extends (PropertyStore, Boolean, (PropertyKindsConfiguration) => Unit, (List[ComputationSpecification[A]]) => Unit) => List[(ComputationSpecification[A], A)] with Product with Serializable
Encapsulates a computed schedule and enables the execution of it. Primarily takes care of calling the life-cycle methods of the analyses and setting up the phase appropriately. You can use an AnalysisScenario to compute a schedule.
- batches
The representation of the computed schedule.
- Source
- Schedule.scala
- Alphabetic
- By Inheritance
- Schedule
- Serializable
- Product
- Equals
- Function4
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new Schedule(batches: List[PhaseConfiguration[A]], initializationData: Map[ComputationSpecification[A], Any])
- batches
The representation of the computed schedule.
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def apply(ps: PropertyStore, trace: Boolean = false, afterPhaseSetup: (PropertyKindsConfiguration) => Unit = _ => (), afterPhaseScheduling: (List[ComputationSpecification[A]]) => Unit = _ => ()): List[(ComputationSpecification[A], A)]
Schedules the computation specifications; that is, executes the underlying analysis scenario.
Schedules the computation specifications; that is, executes the underlying analysis scenario.
- ps
The property store which should be used to execute the analyses.
- afterPhaseSetup
Called back after the phase with the given configuration was set up.
- afterPhaseScheduling
Called back after all analyses of a specific phase have been schedule (i.e., before calling waitOnPhaseCompletion).
- Definition Classes
- Schedule → Function4
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- val batches: List[PhaseConfiguration[A]]
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
- def curried: (PropertyStore) => (Boolean) => ((PropertyKindsConfiguration) => Unit) => ((List[ComputationSpecification[A]]) => Unit) => List[(ComputationSpecification[A], A)]
- Definition Classes
- Function4
- Annotations
- @unspecialized()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- val initializationData: Map[ComputationSpecification[A], Any]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toString(): String
- Definition Classes
- Schedule → Function4 → AnyRef → Any
- def tupled: ((PropertyStore, Boolean, (PropertyKindsConfiguration) => Unit, (List[ComputationSpecification[A]]) => Unit)) => List[(ComputationSpecification[A], A)]
- Definition Classes
- Function4
- Annotations
- @unspecialized()
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated