git_bsmd/AIS/bsmd.AIS2Service/IAISThread.cs
2025-11-11 16:54:40 +01:00

27 lines
550 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace bsmd.AIS2Service
{
internal interface IAISThread
{
/// <summary>
/// regular start request
/// </summary>
void Start();
/// <summary>
/// regular stop request
/// </summary>
void Stop();
/// <summary>
/// if this happens the whole show must be stopped
/// </summary>
event EventHandler FatalErrorOccurred;
}
}