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.
17 lines
519 B
17 lines
519 B
using CoreAgent.ProtocolClient.Models;
|
|
|
|
namespace CoreAgent.ProtocolClient.ProtocolEngineCore
|
|
{
|
|
/// <summary>
|
|
/// 协议日志观察者接口
|
|
/// 用于观察和处理转换后的协议日志数据
|
|
/// </summary>
|
|
public interface IProtocolLogObserver
|
|
{
|
|
/// <summary>
|
|
/// 处理协议日志详情
|
|
/// </summary>
|
|
/// <param name="logDetails">协议日志详情列表</param>
|
|
void OnProtocolLogsReceived(IEnumerable<TransferProtocolLog> logDetails);
|
|
}
|
|
}
|