getSystemValueInt(self::KEY_MAX_SIZE, 100 * 1024 * 1024); } public static function setMaxChunkSize(int $maxChunkSize): void { Server::get(IConfig::class)->setSystemValue(self::KEY_MAX_SIZE, $maxChunkSize); } public static function getMaxParallelCount(): int { return Server::get(IConfig::class)->getSystemValueInt(self::KEY_MAX_PARALLEL_COUNT, 5); } }