WP_Background_Process::unlock_process
Unlock process
Unlock the process so that other instances can spawn.
Method of the class: WP_Background_Process{}
No Hooks.
Returns
$this.
Usage
// protected - for code of main (parent) or child class $result = $this->unlock_process();
WP_Background_Process::unlock_process() WP Background Process::unlock process code WC 10.8.1
protected function unlock_process() {
delete_site_transient( $this->identifier . '_process_lock' );
return $this;
}