You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.2 KiB
52 lines
1.2 KiB
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<object> deviceList)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void SendSensors(DeviceType type, int deviceId, List<object> sensorList)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void SendDeviceState(DeviceType type, object device)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
|
|
public void SendSensorState(DeviceType type, object sensor)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|