tbf/TestBenchFramework/BenchControl/GenericDevices/IResultsPrinter.cs

26 lines
724 B
C#

///
/// Copyright (c) 2013-2015 Sensus Metering Systems
///
using System.Collections.Generic;
using Config.Entities;
using TBF.BenchControl.Generic;
namespace TBF.BenchControl.GenericDevices
{
public interface IResultsPrinter : IComponent
{
/// <summary>
/// Prints the test cycle results, Events: Event.ResultsPrinted
/// </summary>
/// <param name="batchResults">Results to print</param>
/// <returns>Reference to the operation</returns>
IOperation PrintResultsOp(Results.Entities.Batch batch);
/// <summary>
/// When true printing at the end of cycle is bypassed.
/// Can be used to disable printing without having to modify all procedures.
/// </summary>
bool SupressPrinting { get; }
}
}