Package com._1c.g5.v8.derived
Interface IDerivedDataObjectStatusListener
-
- All Known Implementing Classes:
DerivedDataObjectStatusConsumer
public interface IDerivedDataObjectStatusListener
Listens notifications about derived data states changes for a particular top BM object.
The derived data manager sends notifications in following cases:
- Derived data section is being invalidated due to main model data changes
- Derived data section becomes valid
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
statusChanged(long bmObjectId, DerivedDataObjectStatus status)
Notifies the listener that the DD status is being changed for the tracked object.
-
-
-
Method Detail
-
statusChanged
void statusChanged(long bmObjectId, DerivedDataObjectStatus status)
Notifies the listener that the DD status is being changed for the tracked object.- Parameters:
bmObjectId
- Object id for the object which DD status have been changed.status
- The current status of DD for the target object. Cannot benull
.
-
-