mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 09:06:20 +02:00
Add load balancing
This commit is contained in:
@@ -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;
|
||||
}
|
||||
Reference in New Issue
Block a user