IDeviceEventHandler.cs 289 B

123456789101112
  1. using Hotline.CallCenter.Devices;
  2. namespace Hotline
  3. {
  4. /// <summary>
  5. /// 处理设备事件
  6. /// </summary>
  7. public interface IDeviceEventHandler
  8. {
  9. Task HandleAsync(Stream eventStream, DeviceConfigs deviceConfigs, CancellationToken cancellationToken);
  10. }
  11. }