Exemplo n.º 1
0
 public void Append(SensorReadout readout)
 {
     Activate(ActivationPurpose.Write);
     if (_next == null)
     {
         _next = readout;
     }
     else
     {
         _next.Append(readout);
     }
 }
Exemplo n.º 2
0
 private void AppendToHistory(SensorReadout readout)
 {
     Activate(ActivationPurpose.Write);
     if (_history == null)
     {
         _history = readout;
     }
     else
     {
         _history.Append(readout);
     }
 }