IInfoSendingService.cs 347 B

123456789101112131415
  1. using RTCommunicatorBase;
  2. using UniversalNetFrame451.IO;
  3. namespace AlarmInfoServerSim.Services
  4. {
  5. public interface IInfoSendingService
  6. {
  7. bool Open();
  8. bool Send(byte tag, ST_ALARM alarm);
  9. event EventHandler<bool>? ConnectionStatusChanged;
  10. event EventHandler<TcpConnection>? TcpConnectionChanged;
  11. }
  12. }