Resque\Queue::size PHP Method

size() public method

Return the size (number of pending jobs) of the specified queue.
public size ( string $queue ) : integer
$queue string name of the queue to be checked for pending jobs
return integer The size of the queue.
    public function size($queue)
    {
        return $this->redis->llen(self::redisKey($this->getQueue($queue)));
    }