object InterimPartialResult extends Serializable
- Alphabetic
- By Inheritance
- InterimPartialResult
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- def apply[SE >: Null <: Property, UE >: Null <: Entity, UP >: Null <: Property](uE: UE, uPK: PropertyKey[UP], u: UpdateComputation[UE, UP], dependees: Set[SomeEOptionP], c: OnUpdateContinuation): InterimPartialResult[SE]
Creates a new
InterimPartialResult
sCreates a new
InterimPartialResult
s- uE
The entity for which we have a partial result.
- uPK
The kind of the property for which we have a partial result.
- u
The function which is given the current property (if any) and which computes the new property.
u
has to returnNone
if the update does not change the property andSome(NewProperty)
otherwise.
- def apply[SE >: Null <: Property](dependees: Set[SomeEOptionP], c: OnUpdateContinuation): InterimPartialResult[SE]
Creates a new
InterimPartialResult
for the case where we just want to (re)register a depending computation.