55 lines
1.1 KiB
C#
55 lines
1.1 KiB
C#
///
|
|
/// Copyright (c) 2013-2015 Sensus Metering Systems
|
|
///
|
|
using log4net;
|
|
|
|
namespace TBF.Rig.Operations
|
|
{
|
|
/// <summary>
|
|
/// An empty operation.
|
|
///
|
|
/// Constructors:
|
|
/// EmptyBalanceTank()
|
|
/// Start argument:
|
|
/// -
|
|
/// Events:
|
|
/// Event.None ... operation is in progress
|
|
/// </summary>
|
|
class EmptyBalanceTankOp : IOperation
|
|
{
|
|
private static readonly ILog log = LogManager.GetLogger(typeof(EmptyBalanceTankOp));
|
|
public override string ToString() { return "EmptyBalanceTankOp"; }
|
|
|
|
/// <summary>
|
|
/// Constructor
|
|
/// </summary>
|
|
public EmptyBalanceTankOp()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// When started
|
|
/// </summary>
|
|
public void Start()
|
|
{
|
|
}
|
|
|
|
/// <summary>
|
|
/// When running
|
|
/// </summary>
|
|
/// <returns></returns>
|
|
public Event Run()
|
|
{
|
|
/// Must return some event
|
|
return Event.None;
|
|
}
|
|
|
|
/// <summary>
|
|
/// When stopped
|
|
/// </summary>
|
|
public void Stop()
|
|
{
|
|
}
|
|
}
|
|
}
|