public interface DataPointListener
Modifier and Type | Method and Description |
---|---|
void |
pointBackdated(PointValueTime value)
This method is called when a backdated value is received.
|
void |
pointChanged(PointValueTime oldValue,
PointValueTime newValue)
This method is called every time the point gets a value that is different from its previous value (except for its
initialization).
|
void |
pointInitialized()
This method is called for all existing listeners when the point is initialized.
|
void |
pointSet(PointValueTime oldValue,
PointValueTime newValue)
This method is called every time the point gets set, whether the value changes or not.
|
void |
pointTerminated()
This method is called when the point has been terminated, allowing listeners to react as necessary.
|
void |
pointUpdated(PointValueTime newValue)
This method is called every time the point gets a value from somewhere (except for its initialization).
|
void pointInitialized()
void pointUpdated(PointValueTime newValue)
newValue
- void pointChanged(PointValueTime oldValue, PointValueTime newValue)
oldValue
- newValue
- void pointSet(PointValueTime oldValue, PointValueTime newValue)
oldValue
- newValue
- void pointBackdated(PointValueTime value)
value
- void pointTerminated()