common/Utils/ProcessExecShared/IProcessState.cs

21 lines
478 B
C#
Raw Permalink Normal View History

2026-04-23 15:50:07 +00:00
using System;
using Xylem.Common.Utils.ProcessExec.EventArguments;
namespace Xylem.Common.Utils.ProcessExec
{
/// <summary>
/// Process state interface
/// </summary>
/// <remarks date="2020-Dec-09" author="Thomas Wiedebusch">
/// - Initial
/// </remarks>
public interface IProcessState
{
/// <summary>
/// Process update event
/// </summary>
event EventHandler<ProcessExecEventArgs> OnProcessUpdate;
}
}