Icicle\Loop\AbstractLoop::isEmpty PHP Method

isEmpty() public method

Determines if there are any pending tasks in the loop.
public isEmpty ( ) : boolean
return boolean
    public function isEmpty() : bool
    {
        return $this->pollManager->isEmpty() && $this->awaitManager->isEmpty() && $this->timerManager->isEmpty() && $this->callableQueue->isEmpty() && $this->immediateManager->isEmpty() && (null === $this->signalManager || $this->signalManager->isEmpty());
    }