diff --git a/async/changelog.html b/async/changelog.html index aad7996c..c2c61782 100644 --- a/async/changelog.html +++ b/async/changelog.html @@ -111,7 +111,7 @@
Feature: Improve PHP 8.5+ support by avoiding deprecated setAccessible() calls.
+(#325 by @W0rma and #330 by @WyriHaximus)
Improve test suite and update test environment.
+(#326 and #330 by @WyriHaximus)
Feature: Improve performance by avoiding unneeded references in FiberMap.
-(#88 by @clue)
Feature: Improve PHP 8.4+ support by avoiding implicitly nullable type declarations.
-(#87 by @clue)
Improve type safety for test environment.
-(#86 by @SimonFrings)
Feature: Improve PHP 8.5+ support by avoiding deprecated setAccessible() calls.
+(#325 by @W0rma and #330 by @WyriHaximus)
Improve test suite and update test environment.
+(#326 and #330 by @WyriHaximus)
Feature: Improve PHP 8.5+ support by avoiding deprecated setAccessible() calls.
+(#325 by @W0rma and #330 by @WyriHaximus)
Improve test suite and update test environment.
+(#326 and #330 by @WyriHaximus)
See also the examples.
+See also the examples.
Here's a client that outputs the output of said server and then attempts to send it a string:
$connector = new React\Socket\Connector();
@@ -815,7 +815,7 @@ Socket
$connection->write('hello there!' . PHP_EOL);
…
});See also the second example for more details.
+See also the second example for more details.
You have to pass a maximum number of open connections to ensure
the server will automatically reject (close) connections once this limit
is exceeded. In this case, it will emit an error event to inform about
@@ -1110,7 +1110,7 @@
See also the examples.
+See also the examples.
Pending connection attempts can be cancelled by cancelling its pending promise like so:
$promise = $tcpConnector->connect('127.0.0.1:80');
@@ -1164,7 +1164,7 @@ Socket
$connection->write('...');
$connection->end();
});See also the examples.
+See also the examples.
Pending connection attempts can be cancelled by cancelling its pending promise like so:
$promise = $dnsConnector->connect('www.google.com:80');
@@ -1206,7 +1206,7 @@ Socket
$connection->write('...');
$connection->end();
});See also the examples.
+See also the examples.
Pending connection attempts can be cancelled by cancelling its pending promise like so:
$promise = $dnsConnector->connect('www.google.com:80');
@@ -1238,7 +1238,7 @@ Socket
$connection->write("GET / HTTP/1.0\r\nHost: www.google.com\r\n\r\n");
...
});See also the examples.
+See also the examples.
Pending connection attempts can be cancelled by cancelling its pending promise like so:
$promise = $secureConnector->connect('www.google.com:443');
@@ -1285,7 +1285,7 @@ Socket
$timeoutConnector->connect('google.com:80')->then(function (React\Socket\ConnectionInterface $connection) {
// connection succeeded within 3.0 seconds
});See also any of the examples.
+See also any of the examples.
This class takes an optional LoopInterface|null $loop parameter that can be used to
pass the event loop instance to use for this object. You can use a null value
here in order to use the default loop.
@@ -1340,7 +1340,7 @@
This project follows SemVer. This will install the latest supported version:
-composer require react/socket:^1.16composer require react/socket:^1.17See also the CHANGELOG for details about version upgrades.
This project aims to run on any platform and thus does not require any PHP extensions and supports running on legacy PHP 5.3 through current PHP 8+ and HHVM. @@ -1394,7 +1394,7 @@