svValue++;
notifyValueChange();
}
private void notifyValueChange() {
MonitorListener listener = (MonitorListener) monitorListenerTracker.getService();
if (listener != null) {
listener.updated(MONITORABLE_PID, new StatusVariable(sv.getID(), sv.getCollectionMethod(), svValue));
}
}