mirror of
https://github.com/Stone-Red-Code/RemoteExec.git
synced 2026-09-04 00:56:17 +02:00
7 lines
161 B
C#
7 lines
161 B
C#
namespace RemoteExec.Client;
|
|
|
|
public interface ILoadBalancingStrategy
|
|
{
|
|
ServerConnection? SelectServer(IEnumerable<ServerConnection> availableServers);
|
|
}
|