/// /// Copyright (c) 2020 Sensus Slovensko a.s. /// using System; using System.Collections.Generic; using TBF.BenchControl.Generic; using Results.Entities; namespace TBF.BenchControl.GenericDevices { public interface IStatisticsMonitoring : IComponent { /// /// Process recent results and monitor obtained statistics /// (failure rates of hardware components, etc.) /// /// Number of the last saved batch /// Reference to the operation IOperation ProcessStatisticsOp(int lastBatchNr); } }