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.

29 lines
1018 B

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