minor comment add

This commit is contained in:
James Seibel
2025-01-11 13:36:58 -06:00
parent ac2bfd98cd
commit 8af67c8fcf
@@ -35,6 +35,12 @@ public class PriorityTaskPicker
private volatile boolean isShutDown = false;
//==================//
// executor methods //
//==================//
/**
* Creates an executor with a specific priority.
* Higher priority executors have more exponentially entries in the distribution queue, giving them a greater chance to run tasks.
@@ -152,6 +158,11 @@ public class PriorityTaskPicker
}
//================//
// helper classes //
//================//
public class Executor extends AbstractExecutorService
{
private final Queue<TrackedRunnable> tasks = new ConcurrentLinkedQueue<>();