package seq
- Alphabetic
- Public
- Protected
Type Members
- final case class HandleResultTask[E <: Entity, P <: Property](ps: PropertyStore, r: PropertyComputationResult) extends QualifiedTask with Product with Serializable
- final case class OnFinalUpdateComputationTask[E <: Entity, P <: Property](ps: PropertyStore, r: FinalEP[E, P], c: OnUpdateContinuation) extends QualifiedTask with Product with Serializable
- final case class OnUpdateComputationTask[E <: Entity, P <: Property](ps: PropertyStore, epk: EPK[E, P], c: OnUpdateContinuation) extends QualifiedTask with Product with Serializable
- final class PKESequentialPropertyStore extends SeqPropertyStore
A reasonably optimized, complete, but non-concurrent implementation of the property store.
A reasonably optimized, complete, but non-concurrent implementation of the property store. Primarily intended to be used for evaluation, debugging and prototyping purposes.
- final case class PropertyComputationTask[E <: Entity](ps: PropertyStore, e: E, pc: PropertyComputation[E]) extends QualifiedTask with Product with Serializable
- trait PropertyStoreDependentTasksManager extends TasksManager
- sealed abstract class QualifiedTask extends () => Unit
Encapsulates different tasks.
- abstract class SeqPropertyStore extends PropertyStore
Non-concurrent implementation of the property store.
- trait TasksManager extends AnyRef
Value Members
- object PKESequentialPropertyStore extends PropertyStoreFactory[PKESequentialPropertyStore]
Factory for creating
PKESequentialPropertyStore
s.Factory for creating
PKESequentialPropertyStore
s.The task manager that will be used to instantiate the project will be extracted from the
PropertyStoreContext
if the context contains aConfig
object. The fallback is theManyDirectDependersLastTasksManager
.