public override void UpdateData_async(MCS.AMD_GuiDataUpdater_UpdateData updater,
                                       long lTime,
                                       GuiDataItem data, Ice.Current current)
 {
     updater.ice_response();
     if (null != this.DataChange)
     {
         this.DataChange(lTime, data);
     }
 }
Beispiel #2
0
        public void CallBack(long lTime, GuiDataItem item)
        {
            if (null != this.DataUpdater)
            {
                m_updateTime = DateTime.Now;
                //m_updateTime = m_updateTime.AddYears(1969);
                //m_updateTime = m_updateTime.AddSeconds(lTime);

                this.DataUpdater(lTime, item);
            }
        }