add sparse workload placement

This commit is contained in:
Yisroel Baum 2026-08-19 22:40:43 +03:00
parent ff8efd7f4a
commit 90dcc8665a
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
3 changed files with 55 additions and 16 deletions

View file

@ -4,6 +4,7 @@ namespace App\Schedule;
enum WorkloadPlacement: string
{
case Spread = 'spread';
case Start = 'start';
case Middle = 'middle';
case End = 'end';