2022-06-27 10:20:54 +05:00
|
|
|
|
using AsbCloudDb.Model;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
|
|
|
|
namespace AsbCloudInfrastructure.Services.DetectOperations.Detectors
|
|
|
|
|
{
|
|
|
|
|
internal interface IDetector
|
|
|
|
|
{
|
2022-06-29 13:40:06 +05:00
|
|
|
|
bool TryDetect(int idTelemetry, DetectableTelemetry[] telemetryFragment, int begin, int end, out IEnumerable<OperationDetectorResult> operations);
|
2022-06-27 10:20:54 +05:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
internal interface IOperationDetector : IDetector
|
|
|
|
|
{ }
|
|
|
|
|
|
|
|
|
|
internal interface IFragmentDetector: IDetector
|
2022-06-27 12:43:55 +05:00
|
|
|
|
{ }
|
2022-06-27 10:20:54 +05:00
|
|
|
|
}
|