///
/// Copyright (c) 2020 Sensus Slovensko a.s.
///
namespace TBF.BenchControl.GenericDevices
{
public interface IEventTrigger : IResultsProcessor
{
///
/// Analyze results of one batch of water meters and trigger appropriate events.
/// Events: Event.ResultsProcessed, Event.Busy
///
/// Results of a batch of water meters
/// Reference to the operation
IOperation ProcessResultsOp(Results.Entities.Batch batch);
}
}