29 lines
562 B
C#
29 lines
562 B
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
///
|
|
using log4net;
|
|
|
|
namespace TBF.BenchControl.Operations
|
|
{
|
|
class ClearResultsOp : IOperation
|
|
{
|
|
private static readonly ILog log = LogManager.GetLogger(typeof(ClearResultsOp));
|
|
public override string ToString() { return "ClearResultsOp"; }
|
|
|
|
public void Start()
|
|
{
|
|
//Results.Clear();
|
|
}
|
|
|
|
public Event Run()
|
|
{
|
|
log.Info("Event.Done");
|
|
return Event.Done;
|
|
}
|
|
|
|
public void Stop()
|
|
{
|
|
}
|
|
}
|
|
}
|