From 70a3f8457e690e33fcbdb251b304dc511266ec20 Mon Sep 17 00:00:00 2001 From: Ivan Zorin Date: Wed, 1 Jan 2025 22:49:41 +0300 Subject: [PATCH] Update Client.php --- src/Client.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Client.php b/src/Client.php index 3d8303a..2daf4ef 100644 --- a/src/Client.php +++ b/src/Client.php @@ -201,7 +201,9 @@ public static function onMessage(ConnectionInterface &$connection, mixed $reques */ public static function onClose(): void { - echo "Предупреждение: Соединение закрыто, попытка переподключения\n"; + Timer::add(0.5, function() { + echo "Предупреждение: Соединение закрыто, попытка переподключения\n"; + }, persistent: false); self::$connection = null; self::clearTimer(); self::$reconnectTimer = Timer::add(1, [self::class, 'connect'], [self::$socketName]);