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,10 @@
namespace RemoteExec.Client;
public enum LoadBalancingStrategy
{
RoundRobin,
Random,
LeastConnections,
LeastActiveTasks,
ResourceAware
}