21 lines
478 B
C#
21 lines
478 B
C#
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;
|
|
|
|
}
|
|
}
|