27 lines
550 B
C#
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;
|
|
}
|
|
}
|