Files
XplorePlane/XP.Scan/Services/IReconstructionNotifyService.cs
T

16 lines
492 B
C#

namespace XP.Scan.Services
{
/// <summary>
/// 重建通知服务接口 | Reconstruction notification service interface
/// 负责通过 Socket 通知本地重建软件启动重建任务
/// </summary>
public interface IReconstructionNotifyService
{
/// <summary>
/// 发送重建通知消息
/// </summary>
/// <param name="configPath">扫描配置文件路径</param>
void SendReconstructionNotify(string configPath);
}
}