GracefulDeath\Life::askedToStop PHP Method

askedToStop() public method

public askedToStop ( )
    public function askedToStop()
    {
        // This needs to be called to dispatch the signals received by the current
        // process. The PHP process doesn't do that by default, if you have some piece
        // of code that it's executed periodically then this is the best method
        pcntl_signal_dispatch();
        return !is_null($this->signal);
    }