Files
qhmes/yy-admin-master/YY.Admin.Services/Service/Jeecg/IJeecgUserSyncCoordinator.cs

19 lines
590 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
namespace YY.Admin.Services.Service.Jeecg
{
/// <summary>
/// Jeecg 用户镜像后台同步协调器统一设备通道STOMP信号 + Outbox 拉取,不再使用独立 Jeecg WebSocket 收包循环。
/// </summary>
public interface IJeecgUserSyncCoordinator
{
/// <summary>
/// 启动后台同步(主窗口登录成功后调用)
/// </summary>
void Start();
/// <summary>
/// 停止后台同步与 STOMP 信号订阅(登出或关闭主窗口时调用)
/// </summary>
void Stop();
}
}