|
Server : LiteSpeed System : Linux srv526460274 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : kerao9884 ( 1082) PHP Version : 8.0.30 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /home/beb188.com/public_html/wp-content/plugins/amp/src/BackgroundTask/ |
Upload File : |
<?php
/**
* Abstract class CronBasedBackgroundTask.
*
* @package AmpProject\AmpWP
*/
namespace AmpProject\AmpWP\BackgroundTask;
use AmpProject\AmpWP\Infrastructure\Registerable;
use AmpProject\AmpWP\Infrastructure\Service;
/**
* Abstract base class for using cron to execute a background task.
*
* @package AmpProject\AmpWP
* @since 2.0
* @internal
*/
abstract class CronBasedBackgroundTask implements Service, Registerable {
const DEFAULT_INTERVAL_HOURLY = 'hourly';
const DEFAULT_INTERVAL_TWICE_DAILY = 'twicedaily';
const DEFAULT_INTERVAL_DAILY = 'daily';
/**
* BackgroundTaskDeactivator instance.
*
* @var BackgroundTaskDeactivator
*/
protected $background_task_deactivator;
/**
* Class constructor.
*
* @param BackgroundTaskDeactivator $background_task_deactivator Service that deactivates background events.
*/
public function __construct( BackgroundTaskDeactivator $background_task_deactivator ) {
$this->background_task_deactivator = $background_task_deactivator;
}
/**
* Register the service with the system.
*
* @return void
*/
public function register() {
$this->background_task_deactivator->add_event( $this->get_event_name() );
}
/**
* Schedule the event.
*
* @param mixed[] ...$args Arguments passed to the function from the action hook.
*/
abstract protected function schedule_event( ...$args );
/**
* Get the event name.
*
* This is the "slug" of the event, not the display name.
*
* Note: the event name should be prefixed to prevent naming collisions.
*
* @return string Name of the event.
*/
abstract protected function get_event_name();
/**
* Process the event.
*
* @param mixed[] ...$args Args to pass to the process callback.
*/
abstract public function process( ...$args );
}