first commit

This commit is contained in:
2026-03-05 13:07:40 +01:00
commit 64ba0721ee
25709 changed files with 4691006 additions and 0 deletions

View File

@@ -0,0 +1,37 @@
<?php
/**
* Interface for Batch PrefetchProcess
*
* @package PUM
* @copyright Copyright (c) 2023, Code Atlantic LLC
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
/**
* Second-level interface for registering a batch process that leverages
* pre-fetch and data storage.
*
* @since 1.7.0
*/
interface PUM_Interface_Batch_PrefetchProcess extends PUM_Interface_Batch_Process {
/**
* Initializes the batch process.
*
* This is the point where any relevant data should be initialized for use by the processor methods.
*
* @param null|mixed $data
*
* @return void
*/
public function init( $data = null );
/**
* Pre-fetches data to speed up processing.
*/
public function pre_fetch();
}