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