Use dedicated I/O executor

This commit is contained in:
M66B
2022-12-27 21:39:27 +01:00
parent d23bd75e8d
commit 9c5d1cbde5
3 changed files with 5 additions and 5 deletions

View File

@@ -280,7 +280,7 @@ public class Helper {
}
}
private static ExecutorService getBackgroundExecutor(int threads, final String name) {
static ExecutorService getBackgroundExecutor(int threads, final String name) {
ThreadFactory factory = new ThreadFactory() {
private final AtomicInteger threadId = new AtomicInteger();