Merge pull request #39 from LoudSoftware/add-general-thread-pool-in-config

Add general thread pool in config
This commit is contained in:
EOT3000 2019-09-22 18:24:21 -04:00 committed by GitHub
commit edfde58799
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 11 additions and 5 deletions

View File

@ -99,18 +99,14 @@ public class GeyserConnector implements Connector {
long startupTime = System.currentTimeMillis();
// Metric
if(!(System.console() == null) && System.getProperty("os.name", "Windows 10").toLowerCase().contains("windows")) {
if (!(System.console() == null) && System.getProperty("os.name", "Windows 10").toLowerCase().contains("windows")) {
AnsiConsole.systemInstall();
}
instance = this;
this.generalThreadPool = Executors.newScheduledThreadPool(32); //TODO: Make configurable value
this.logger = GeyserLogger.DEFAULT;
ConsoleCommandReader consoleReader = new ConsoleCommandReader(this);
consoleReader.startConsole();
logger.info("******************************************");
logger.info("");
logger.info("Loading " + NAME + " vesion " + VERSION);
@ -126,6 +122,10 @@ public class GeyserConnector implements Connector {
shutdown();
}
this.generalThreadPool = Executors.newScheduledThreadPool(config.getGeneralThreadPool());
ConsoleCommandReader consoleReader = new ConsoleCommandReader(this);
consoleReader.startConsole();
logger.setDebug(config.isDebugMode());
Toolbox.CACHED_PALLETE.array();

View File

@ -47,5 +47,8 @@ public class GeyserConfiguration {
@JsonProperty("debug-mode")
private boolean debugMode;
@JsonProperty("general-thread-pool")
private int generalThreadPool;
private MetricInfo metrics;
}

View File

@ -46,6 +46,9 @@ max-players: 100
# If debug messages should be sent through console
debug-mode: false
# Thread pool size
general-thread-pool: 32
# bStats is a stat tracker that is entirely anonymous and tracks only basic information
# about Geyser, such as how many people are online, how many servers are using Geyser,
# what OS is being used, etc. You can learn more about bStats here: https://bstats.org/.