ISendInfoService.cs 242 B

12345678910111213
  1. using RTCommunicatorBase;
  2. namespace AlarmInfoServerSim.Services
  3. {
  4. public interface ISendInfoService
  5. {
  6. bool Open();
  7. bool Send(byte tag, ST_ALARM alarm);
  8. event EventHandler<bool>? ConnectionChanged;
  9. }
  10. }