using CoreAgent.ProtocolClient.Models; using Newtonsoft.Json.Linq; namespace CoreAgent.ProtocolClient.ProtocolEngineCore { /// /// 协议日志观察者接口 /// 用于观察和处理转换后的协议日志数据 /// public interface IProtocolLogObserver { /// /// 处理协议日志详情 /// /// 协议日志详情列表 void OnProtocolLogsReceived(IEnumerable logDetails); /// /// 解析 LTE 参数 写入上下文 /// /// void OnLTECellConfigurationReceived(Dictionary CellConfiguration); /// /// 解析 NR 参数 写入上下文 /// /// void OnNrCellConfigurationReceived(Dictionary CellConfiguration); } }