Swoole\Coroutine\WaitGroup->count

4.x is outdated, please check the latest version 22.x


Latest version: pecl install openswoole-22.1.2

Declaration

<?php Swoole\Coroutine\WaitGroup->count()

Parameters

Return

Description

Get the pending count of the wait group.

Example

<?php
declare(strict_types=1);

use Swoole\Coroutine\WaitGroup;

Co\run(function() {
    $wg = new WaitGroup();

    go(function () use ($wg) {
        $wg->add();
        co::usleep(300000);
        $wg->done();
    });

    go(function () use ($wg) {
        $wg->add();
        co::usleep(700000);
        echo $wg->count();
        $wg->done();
    });

    $wg->wait(1);
});
Last updated on August 31, 2022