20 lines
285 B
C#
20 lines
285 B
C#
using Microsoft.AspNetCore.SignalR;
|
|
|
|
namespace RobotApp.Hubs;
|
|
|
|
public class RobotMonitorHub : Hub
|
|
{
|
|
public async Task SendRobotMonitorData(RobotApp.Common.Shares.Dtos.RobotMonitorDto data)
|
|
{
|
|
await Clients.All.SendAsync("ReceiveRobotMonitorData", data);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|