Resque\Queue::sizeDelayed PHP Method

sizeDelayed() public method

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