namespace YY.Admin.Core.Services; /// /// 设备库代理 STOMP 发送扩展(由 StompWebSocketService 实现)。 /// public interface IEquipmentDbStompSender { Task SendAgentStatusAsync(object status, CancellationToken cancellationToken = default); Task SendAgentResultAsync(object result, CancellationToken cancellationToken = default); string CurrentDeviceId { get; } }