示例#1
0
 public void Update(Counter update, uint index)
 {
     IMeasurement maybeNull = this.m_lookup.LookupMaybeNull(update, index);
     if (maybeNull != null) this.m_Measurements.Add(maybeNull);
 }
示例#2
0
 public void Update(Counter update, System.UInt32 index)
 {
     Console.WriteLine(update.value);
 }
示例#3
0
 public void Update(Counter update, uint index)
 {
     source.Update(update, index, "");
 }
示例#4
0
 public void Update(Counter meas, UInt32 index, String id)
 {
     if (this.AllCounterUpdate != null) sync.BeginInvoke(new Action(() => AllCounterUpdate(meas, index, id)), null);
 }
示例#5
0
 public void Update(Counter update, System.UInt32 index)
 {
     Console.WriteLine(update.value);
 }
示例#6
0
 void ISOEHandler.LoadEvent(Counter meas, ushort index)
 {
     m_lookup.Lookup(meas, index, m_Measurements.Add);
 }