Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions examples/95-benchmark-memory.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

/**
* Run the script indefinitely seconds with the loop from the factory and report every 2 seconds:
* php test-memory.php
* php 95-benchmark-memory.php
* Run the script for 30 seconds with the stream_select loop and report every 10 seconds:
* php test-memory.php -t 30 -l StreamSelect -r 10
* php 95-benchmark-memory.php -t 30 -l StreamSelect -r 10
*/

use React\EventLoop\Factory;
Expand All @@ -26,17 +26,17 @@
$runs = 0;

if (5 < $t) {
$loop->addTimer($t, function (TimerInterface $timer) {
$timer->getLoop()->stop();
$loop->addTimer($t, function () use ($loop) {
$loop->stop();
});

}

$loop->addPeriodicTimer(0.001, function () use (&$runs, $loop) {
$runs++;

$loop->addPeriodicTimer(1, function (TimerInterface $timer) {
$timer->cancel();
$loop->addPeriodicTimer(1, function (TimerInterface $timer) use ($loop) {
$loop->cancelTimer($timer);
});
});

Expand Down