Packages

c

org.opalj.fpcf

Schedule

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
Linear Supertypes
Serializable, Product, Equals, (PropertyStore, Boolean, (PropertyKindsConfiguration) => Unit, (List[ComputationSpecification[A]]) => Unit) => List[(ComputationSpecification[A], A)], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Schedule
  2. Serializable
  3. Product
  4. Equals
  5. Function4
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new Schedule(batches: List[PhaseConfiguration[A]], initializationData: Map[ComputationSpecification[A], Any])

    batches

    The representation of the computed schedule.

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 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
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. val batches: List[PhaseConfiguration[A]]
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  8. def curried: (PropertyStore) => (Boolean) => ((PropertyKindsConfiguration) => Unit) => ((List[ComputationSpecification[A]]) => Unit) => List[(ComputationSpecification[A], A)]
    Definition Classes
    Function4
    Annotations
    @unspecialized()
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  11. val initializationData: Map[ComputationSpecification[A], Any]
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  16. def productElementNames: Iterator[String]
    Definition Classes
    Product
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toString(): String
    Definition Classes
    Schedule → Function4 → AnyRef → Any
  19. def tupled: ((PropertyStore, Boolean, (PropertyKindsConfiguration) => Unit, (List[ComputationSpecification[A]]) => Unit)) => List[(ComputationSpecification[A], A)]
    Definition Classes
    Function4
    Annotations
    @unspecialized()
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from (PropertyStore, Boolean, (PropertyKindsConfiguration) => Unit, (List[ComputationSpecification[A]]) => Unit) => List[(ComputationSpecification[A], A)]

Inherited from AnyRef

Inherited from Any

Ungrouped