tbf/TBF/Rig/GenericDevices/IStatisticsMonitoring.cs
2021-10-26 19:38:09 +02:00

22 lines
618 B
C#

///
/// Copyright (c) 2020 Sensus Slovensko a.s.
///
using System;
using System.Collections.Generic;
using TBF.Rig.Generic;
using Results.Entities;
namespace TBF.Rig.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);
}
}