22 lines
636 B
C#
22 lines
636 B
C#
|
|
///
|
|||
|
|
/// 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
|
|||
|
|
{
|
|||
|
|
/// <summary>
|
|||
|
|
/// Process recent results and monitor obtained statistics
|
|||
|
|
/// (failure rates of hardware components, etc.)
|
|||
|
|
/// </summary>
|
|||
|
|
/// <param name="lastBatchNr">Number of the last saved batch</param>
|
|||
|
|
/// <returns>Reference to the operation</returns>
|
|||
|
|
IOperation ProcessStatisticsOp(int lastBatchNr);
|
|||
|
|
}
|
|||
|
|
}
|