mirror of
https://github.com/GravitLauncher/Launcher
synced 2024-12-23 00:51:01 +03:00
[FEATURE] Конфигурирование netty при автосоздании конфига
This commit is contained in:
parent
709efdd04e
commit
dd27978e12
1 changed files with 5 additions and 0 deletions
|
@ -569,6 +569,11 @@ private void generateConfigIfNotExists() throws IOException {
|
|||
newConfig.binaryName = "Launcher";
|
||||
newConfig.whitelistRejectString = "Вас нет в белом списке";
|
||||
|
||||
newConfig.netty = new NettyConfig();
|
||||
newConfig.netty.address = "ws://localhost:9274";
|
||||
newConfig.netty.clientEnabled = false;
|
||||
newConfig.netty.port = 9274;
|
||||
|
||||
newConfig.threadCoreCount = 0; // on your own
|
||||
newConfig.threadCount = JVMHelper.OPERATING_SYSTEM_MXBEAN.getAvailableProcessors() >= 4 ? JVMHelper.OPERATING_SYSTEM_MXBEAN.getAvailableProcessors() / 2 : JVMHelper.OPERATING_SYSTEM_MXBEAN.getAvailableProcessors();
|
||||
|
||||
|
|
Loading…
Reference in a new issue