ignore error sending message after shut down

This commit is contained in:
woodser 2023-12-29 10:28:45 -05:00
parent 342c212ba8
commit e2e2963b99
2 changed files with 14 additions and 15 deletions

View file

@ -58,7 +58,7 @@ public class UserThread {
}
public static void execute(Runnable command) {
UserThread.executor.execute(() -> {
executor.execute(() -> {
Thread.currentThread().setName(USER_THREAD_NAME);
command.run();
});
@ -79,7 +79,8 @@ public class UserThread {
}
}
public static boolean isUserThread(Thread thread) {
// TODO: better way to determine if on UserThread, since this is not reliable
private static boolean isUserThread(Thread thread) {
return USER_THREAD_NAME.equals(thread.getName());
}