forked from Qortal/qortal
Updated thread names
This commit is contained in:
parent
99f6bb5ac6
commit
f8ffb1a179
@ -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);
|
||||||
|
@ -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
|
||||||
|
@ -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) {
|
||||||
|
Loading…
Reference in New Issue
Block a user