mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 00:56:17 +02:00
10 lines
160 B
C#
10 lines
160 B
C#
namespace RemoteExec.Client;
|
|
|
|
public enum LoadBalancingStrategy
|
|
{
|
|
RoundRobin,
|
|
Random,
|
|
LeastConnections,
|
|
LeastActiveTasks,
|
|
ResourceAware
|
|
} |