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