1234567891011121314151617 |
- using RTCommunicatorBase;
- using TLVProtocal;
- using UniversalNetFrame451.IO;
- namespace AlarmInfoServerSim.Services;
- public interface IInfoSendingService
- {
- void Open();
- void Close();
- void Send(byte tag, ST_ALARM alarm);
- event EventHandler<bool>? TcpServerStatusChanged;
- event EventHandler<(bool, TcpConnection)>? ConnectionChanged;
- event EventHandler<(ushort, TlvData)>? DataReceived;
- }
|