Ejemplo n.º 1
0
 protected override void OnMonitoringTimerTick(object state)
 {
     try
     {
         InternalBar.AddValue((int)InternalCounter.NextValue());
     }
     catch (Exception e)
     { }
 }
Ejemplo n.º 2
0
 protected override void OnMonitoringTimerTick(object state)
 {
     try
     {
         InternalBar.AddValue(Math.Round(InternalCounter.NextValue() / Environment.ProcessorCount, 2, MidpointRounding.AwayFromZero));
     }
     catch (Exception e)
     { }
 }
 protected override void OnMonitoringTimerTick(object state)
 {
     try
     {
         InternalBar?.AddValue(Math.Round(InternalCounter?.NextValue() ?? 0.0, 2, MidpointRounding.AwayFromZero));
     }
     catch (Exception e)
     { }
 }
Ejemplo n.º 4
0
 public override CommonSensorValue GetLastValue()
 {
     return(InternalBar.GetLastValue());
 }
Ejemplo n.º 5
0
 public override void Dispose()
 {
     _monitoringTimer?.Dispose();
     InternalCounter?.Dispose();
     InternalBar?.Dispose();
 }
Ejemplo n.º 6
0
 public override UnitedSensorValue GetLastValue()
 {
     return(InternalBar.GetLastValue());
 }