Add XML docs

This commit is contained in:
Stone_Red
2025-12-23 15:15:18 +01:00
parent 55f26b3a92
commit 3e339b2b7a
26 changed files with 377 additions and 4 deletions
@@ -1,7 +1,11 @@
namespace RemoteExec.Client.LoadBalancingStrategies;
/// <summary>
/// A load balancing strategy that selects servers based on CPU usage, active tasks, and backlog.
/// </summary>
internal class ResourceAwareStrategy : ILoadBalancingStrategy
{
/// <inheritdoc/>
public ServerConnection? SelectServer(IEnumerable<ServerConnection> availableServers)
{
return availableServers.MinBy(s =>