pht\Queue::size

Gets the size of the queue

説明

public int pht\Queue::size ( void )

Returns the current size of the queue. This operation requires a pht\Queue's mutex lock to be held if it is being used by multiple threads.

パラメータ

この関数にはパラメータはありません。

戻り値

The size of the queue.

例1 Getting a queue's size

<?php

use pht\Queue;

$queue = new Queue();

$queue->push(1);
$queue->push(1);

var_dump($queue->size());

上の例の出力は以下となります。

int(2)