DelayedNotificationProperty
is a subclass of
caplin.presenter.property.Property that will allow you to
decide when to notify observers about a value change instead of
having this automatically done whenever the internal value changes.
In order to do this you should call the method
notifyListenersIfUpdated
.
Attributes | Name and Description |
---|---|
|
caplin.presenter.property.DelayedNotificationProperty(Value vValue)
Constructs a new |
Attributes | Name and Description |
---|---|
|
void
notifyListenersIfUpdated()
Notifies observers only if an update has been received (even if the value has not changed). |
►
caplin.presenter.property.DelayedNotificationProperty(Value vValue)
Constructs a new DelayedNotificationProperty
instance.
Value | vValue | The property to wrap. |
►
void
notifyListenersIfUpdated()
Notifies observers only if an update has been received (even if the value has not changed).