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