Add load balancing

This commit is contained in:
Stone_Red
2025-12-20 18:46:21 +01:00
parent 7c3ab3a154
commit 27558ba3f2
10 changed files with 322 additions and 46 deletions
@@ -0,0 +1,11 @@
using Microsoft.AspNetCore.SignalR.Client;
using RemoteExec.Shared;
namespace RemoteExec.Client;
public class ServerMetricsUpdatedEventArgs(HubConnection connection, ServerMetrics metrics) : EventArgs
{
public HubConnection Connection { get; } = connection;
public ServerMetrics Metrics { get; } = metrics;
}