Astra_WP_Background_Process::is_process_running()
Is process running
Description
Check whether the current process is already running in a background process.
Source
File: inc/lib/batch-processing/class-astra-wp-background-process.php
protected function is_process_running() { if ( get_site_transient( $this->identifier . '_process_lock' ) ) { // Process already running. return true; } return false; }
Expand full source code Collapse full source code View on Trac