zenghongyao 4f1814b8df 协议解析优化
策略模式回调采用Action方式灵活处理
2025-04-29 09:16:48 +08:00

10 lines
230 B
C#

using JiShe.CollectBus.Protocol.Dto;
namespace JiShe.CollectBus.Protocol.Interfaces
{
public interface IAnalysisStrategy<TInput>
{
Task<bool> ExecuteAsync(TInput input, Action<dynamic>? result = null);
}
}