Files
Migu2.0/MiGu.Server/Configs/TaskAllocationPolicy.cs
T

13 lines
277 B
C#

namespace MiGu.Server.Configs;
public record TaskAllocationPolicy(
string Mode,
bool LoadBalance,
int MaxQueuePerCar)
{
public static TaskAllocationPolicy Default() => new(
Mode: "leastLoad",
LoadBalance: true,
MaxQueuePerCar: 3);
}