PHP Classes

File: vendor/react/event-loop/examples/94-benchmark-timers-delay.php

Recommend this page to a friend!
  Classes of Hillary Kollan   Chatto PHP Websocket Chat System   vendor/react/event-loop/examples/94-benchmark-timers-delay.php   Download  
File: vendor/react/event-loop/examples/94-benchmark-timers-delay.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Chatto PHP Websocket Chat System
Websocket based chat system using Ratchet library
Author: By
Last change:
Date: 3 years ago
Size: 396 bytes
 

Contents

Class file image Download
<?php

use React\EventLoop\Factory;

require
__DIR__ . '/../vendor/autoload.php';

$loop = Factory::create();

$ticks = isset($argv[1]) ? (int)$argv[1] : 1000 * 100;
$tick = function () use (&$tick, &$ticks, $loop) {
    if (
$ticks > 0) {
        --
$ticks;
       
//$loop->futureTick($tick);
       
$loop->addTimer(0, $tick);
    } else {
        echo
'done';
    }
};

$tick();

$loop->run();