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