namespace JiLinApp.Biz.TransmitAlarm; public class AlarmZmqService : IAlarmService { public event IAlarmService.HandleRecvEvent? OnFenceUdpSendDevices; public event IAlarmService.HandleRecvEvent? OnVibrateTcpSendDevices; public event IAlarmService.HandleRecvEvent? OnFenceUdpSendSensors; public event IAlarmService.HandleRecvEvent? OnVibrateTcpSendSensors; public void Start() { throw new NotImplementedException(); } public void Close() { throw new NotImplementedException(); } public bool IsRuning() { throw new NotImplementedException(); } public void SendAlarm(AlarmMessage msg) { throw new NotImplementedException(); } public void SendDevices(DeviceType type, List deviceList) { throw new NotImplementedException(); } public void SendSensors(DeviceType type, int deviceId, List sensorList) { throw new NotImplementedException(); } public void SendDeviceState(DeviceType type, object device) { throw new NotImplementedException(); } public void SendSensorState(DeviceType type, object sensor) { throw new NotImplementedException(); } }