PHPDaemon\Core\ComplexJob::isQueueFull PHP Метод

isQueueFull() публичный Метод

Returns whether or not the queue is full (maxConcurrency option exceed)
public isQueueFull ( ) : boolean
Результат boolean
    public function isQueueFull()
    {
        return $this->maxConcurrency !== -1 && $this->jobsNum - $this->resultsNum >= $this->maxConcurrency;
    }