123456789101112 |
- using Hotline.CallCenter.Devices;
- namespace Hotline.CallCenter
- {
- /// <summary>
- /// 处理设备事件
- /// </summary>
- public interface IDeviceEventHandler
- {
- Task HandleAsync(Stream eventStream, CallCenterConfiguration deviceConfigs, CancellationToken cancellationToken);
- }
- }
|