Swoole\Coroutine\Channel->isFull()

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


Latest version: pecl install openswoole-22.1.2

Declaration

<?php Swoole\Coroutine\Channel->isFull(): bool

Parameters

None

Return

Returns true if the channel is full, false otherwise.

Swoole Coroutine Channel isFull

Description

Determine whether the current channel is full.

Example

<?php
Co\run(function() {

    $data = 'Hello World!';

    $chan = new chan(1);
    $chan->push($data);
    $pop = $chan->pop();

    var_dump($chan->isFull());

});
Last updated on August 31, 2022