PHP Classes

File: vendor/react/event-loop/examples/93-benchmark-ticks-delay.php

Recommend this page to a friend!
  Classes of Stanley Aloh   Tic Tac Toe Multiplayer   vendor/react/event-loop/examples/93-benchmark-ticks-delay.php   Download  
File: vendor/react/event-loop/examples/93-benchmark-ticks-delay.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Tic Tac Toe Multiplayer
Manage the interactions ofTic-Tac-Toe game players
Author: By
Last change:
Date: 9 days 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->addTimer(0, $tick);
       
$loop->futureTick($tick);
    } else {
        echo
'done';
    }
};

$tick();

$loop->run();