using Microsoft.AspNetCore.SignalR; namespace ZB.MOM.WW.OtOpcUa.AdminUI.Hubs; /// /// Browser-facing alert push channel. Subscribers receive /// snapshots whenever an alarm fires, /// clears, or is acknowledged on any cluster node. Bridge: AlertSignalRBridge subscribes /// to the alerts DPS topic and forwards to every connected SignalR client. /// public sealed class AlertHub : Hub { public const string Endpoint = "/hubs/alerts"; public const string MethodName = "alarmTransition"; }