feat: implement multi-threaded JobScheduler with worker threads and dependency management

This commit is contained in:
2026-05-02 17:53:45 +09:00
parent 0265a386ba
commit b0220a2350
4 changed files with 27 additions and 100 deletions

View File

@@ -61,6 +61,7 @@ public class SPMCQueue<T>
if (Interlocked.CompareExchange(ref _head, head + 1, head) == head)
{
Volatile.Write(ref _tail, head + 1);
return true;
}