public bool UpdateAgentStatus(StatusReportInfo info)
 {
     liveAgents[info.IP] = info;
     return(true);
 }
 //calls from agents to server
 public bool StatusReport(StatusReportInfo info)
 {
     _agents.UpdateAgentStatus(info);
     Clients.All.agentsRefresh(_agents.GetAgents());
     return(true);
 }
Exemple #3
0
 public StatusReport(string sender, StatusReportInfo msg) : base(sender)
 {
     this.Info = msg;
 }