Backend\Core\Engine\Base\Cronjob::clearBusyFile PHP Method

clearBusyFile() protected method

Clear/removed the busy file
protected clearBusyFile ( )
    protected function clearBusyFile()
    {
        $path = $this->getCacheDirectory() . $this->getId() . '.busy';
        // remove the file
        $filesystem = new Filesystem();
        $filesystem->remove($path);
    }