Updated thread names

This commit is contained in:
CalDescent 2022-02-07 22:03:26 +00:00
parent 99f6bb5ac6
commit f8ffb1a179
3 changed files with 5 additions and 1 deletions

View File

@ -110,6 +110,8 @@ public class Synchronizer extends Thread {
@Override @Override
public void run() { public void run() {
Thread.currentThread().setName("Synchronizer");
try { try {
while (running && !Controller.isStopping()) { while (running && !Controller.isStopping()) {
Thread.sleep(1000); Thread.sleep(1000);

View File

@ -37,6 +37,8 @@ public class ArbitraryDataBuildManager extends Thread {
@Override @Override
public void run() { public void run() {
Thread.currentThread().setName("Arbitrary Data Build Manager");
try { try {
// Use a fixed thread pool to execute the arbitrary data build actions (currently just a single thread) // Use a fixed thread pool to execute the arbitrary data build actions (currently just a single thread)
// This can be expanded to have multiple threads processing the build queue when needed // This can be expanded to have multiple threads processing the build queue when needed

View File

@ -32,7 +32,7 @@ public class ArbitraryDataRenderManager extends Thread {
@Override @Override
public void run() { public void run() {
Thread.currentThread().setName("Arbitrary Data Manager"); Thread.currentThread().setName("Arbitrary Data Render Manager");
try { try {
while (!isStopping) { while (!isStopping) {