setElementData=>setData
This commit is contained in:
+1
-1
@@ -743,7 +743,7 @@ public:
|
||||
* NOTE: Not normally called by clients
|
||||
* @param monitorElement the monitorElement that has new data.
|
||||
*/
|
||||
void setElementData(epics::pvData::MonitorElementPtr const & monitorElement);
|
||||
void setData(epics::pvData::MonitorElementPtr const & monitorElement);
|
||||
/** Factory method for creating an instance of PvaClientGetData.
|
||||
* NOTE: Not normally called by clients
|
||||
* @param structure Introspection interface
|
||||
|
||||
@@ -437,7 +437,7 @@ bool PvaClientMonitor::poll()
|
||||
monitorElement = monitor->poll();
|
||||
if(!monitorElement) return false;
|
||||
userPoll = true;
|
||||
pvaClientData->setElementData(monitorElement);
|
||||
pvaClientData->setData(monitorElement);
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
@@ -56,11 +56,11 @@ PvaClientMonitorData::PvaClientMonitorData(StructureConstPtr const & structure)
|
||||
{
|
||||
}
|
||||
|
||||
void PvaClientMonitorData::setElementData(MonitorElementPtr const & monitorElement)
|
||||
void PvaClientMonitorData::setData(MonitorElementPtr const & monitorElement)
|
||||
{
|
||||
PVStructurePtr pvStructure = monitorElement->pvStructurePtr;
|
||||
BitSetPtr changedBitSet = monitorElement->changedBitSet;
|
||||
setData(pvStructure,changedBitSet);
|
||||
PvaClientData::setData(pvStructure,changedBitSet);
|
||||
overrunBitSet = monitorElement->overrunBitSet;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user