改名
This commit is contained in:
@@ -9,6 +9,7 @@ use Server\SInterface\CustomProcess;
|
|||||||
use Server\SInterface\TaskExecute;
|
use Server\SInterface\TaskExecute;
|
||||||
use Server\Task\ServerTask;
|
use Server\Task\ServerTask;
|
||||||
use Snowflake\Abstracts\Config;
|
use Snowflake\Abstracts\Config;
|
||||||
|
use Snowflake\Exception\ConfigException;
|
||||||
use Snowflake\Exception\NotFindClassException;
|
use Snowflake\Exception\NotFindClassException;
|
||||||
use Snowflake\Snowflake;
|
use Snowflake\Snowflake;
|
||||||
use Swoole\Http\Server as HServer;
|
use Swoole\Http\Server as HServer;
|
||||||
@@ -251,6 +252,7 @@ class ServerManager extends Abstracts\Server
|
|||||||
* @param array $settings
|
* @param array $settings
|
||||||
* @throws NotFindClassException
|
* @throws NotFindClassException
|
||||||
* @throws ReflectionException
|
* @throws ReflectionException
|
||||||
|
* @throws ConfigException
|
||||||
*/
|
*/
|
||||||
private function createBaseServer(string $type, string $host, int $port, int $mode, array $settings = [])
|
private function createBaseServer(string $type, string $host, int $port, int $mode, array $settings = [])
|
||||||
{
|
{
|
||||||
@@ -261,7 +263,10 @@ class ServerManager extends Abstracts\Server
|
|||||||
Constant::SERVER_TYPE_WEBSOCKET => WServer::class
|
Constant::SERVER_TYPE_WEBSOCKET => WServer::class
|
||||||
};
|
};
|
||||||
$this->server = new $match($host, $port, SWOOLE_PROCESS, $mode);
|
$this->server = new $match($host, $port, SWOOLE_PROCESS, $mode);
|
||||||
$this->server->set($settings['settings']);
|
$this->server->set(array_merge(
|
||||||
|
Config::get('server.setting', []),
|
||||||
|
$settings['settings']
|
||||||
|
));
|
||||||
$this->addDefaultListener($type, $settings);
|
$this->addDefaultListener($type, $settings);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user