PHP Classes

File: demo/sync-vs-async.php

Recommend this page to a friend!
  Classes of Rodolfo Berrios Arce   Workflow   demo/sync-vs-async.php   Download  
File: demo/sync-vs-async.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Workflow
Create and run action workflows
Author: By
Last change:
Date: 2 months ago
Size: 1,492 bytes
 

 

Contents

Class file image Download
<?php

/*
 * This file is part of Chevere.
 *
 * (c) Rodolfo Berrios <rodolfo@chevere.org>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

declare(strict_types=1);

use
Chevere\Demo\Actions\FetchUrl;
use function
Chevere\Workflow\async;
use function
Chevere\Workflow\run;
use function
Chevere\Workflow\sync;
use function
Chevere\Workflow\variable;
use function
Chevere\Workflow\workflow;

require
'loader.php';

/*
php demo/sync-vs-async.php
*/
$sync = workflow(
   
job1: sync(
        new
FetchUrl(),
       
url: variable('php'),
    ),
   
job2: sync(
        new
FetchUrl(),
       
url: variable('github'),
    ),
   
job3: sync(
        new
FetchUrl(),
       
url: variable('chevere'),
    ),
);
$async = workflow(
   
job1: async(
        new
FetchUrl(),
       
url: variable('php'),
    ),
   
job2: async(
        new
FetchUrl(),
       
url: variable('github'),
    ),
   
job3: async(
        new
FetchUrl(),
       
url: variable('chevere'),
    ),
);
$variables = [
   
'php' => 'https://www.php.net',
   
'github' => 'https://github.com/chevere/workflow',
   
'chevere' => 'https://chevere.org',
];

$time = microtime(true);
$run = run($sync, ...$variables);
$time = round((microtime(true) - $time) * 1000);
echo
"Time (ms) sync: {$time}\n";

$time = microtime(true);
$run = run($async, ...$variables);
$time = round((microtime(true) - $time) * 1000);
echo
"Time (ms) async: {$time}\n";