13 lines
440 B
C#
13 lines
440 B
C#
using ZB.MOM.WW.OtOpcUa.Commons.Types;
|
|
|
|
namespace ZB.MOM.WW.OtOpcUa.Commons.Interfaces;
|
|
|
|
/// <summary>
|
|
/// Per-node diagnostics fetched on demand. Implemented in Phase 8 (AdminUI/Runtime wiring)
|
|
/// over an Akka request/response — the diagnostics actor lives on the target driver node.
|
|
/// </summary>
|
|
public interface IFleetDiagnosticsClient
|
|
{
|
|
Task<NodeDiagnosticsSnapshot> GetDiagnosticsAsync(NodeId nodeId, CancellationToken ct);
|
|
}
|