Lines:
1 to 31 of 31
<?php /** * Abstract WP_Background_Process class. * * Uses https://github.com/A5hleyRich/wp-background-processing to handle DB * updates in the background. * * @package WooCommerce\Classes */ defined( 'ABSPATH' ) || exit; if ( ! class_exists( 'WP_Async_Request', false ) ) { include_once dirname( WC_PLUGIN_FILE ) . '/includes/libraries/wp-async-request.php'; } if ( ! class_exists( 'WP_Background_Process', false ) ) { include_once dirname( WC_PLUGIN_FILE ) . '/includes/libraries/wp-background-process.php'; } /* class WC_Background_Process */ /* function WC_Background_Process::is_queue_empty() – Is queue empty. */ /* function WC_Background_Process::get_batch() – Get batch. */ /* function WC_Background_Process::batch_limit_exceeded() – See if the batch limit has been exceeded. */ /* function WC_Background_Process::handle() – Handle. */ /* function WC_Background_Process::get_memory_limit() – Get memory limit. */ /* function WC_Background_Process::schedule_cron_healthcheck() – Schedule cron healthcheck. */ /* function WC_Background_Process::delete_all_batches() – Delete all batches. */ /* function WC_Background_Process::kill_process() – Kill process. */