wiki.techinc.nl/includes/deferred/EnqueueableDataUpdate.php
Aaron Schulz 09240a268f Make EnqueueableDataUpdate use DB domain IDs
This makes it consistent with what JobQueueGroup actually expects.

Change-Id: Id6c6b3bf19fb1e85a2e3e231d216974d831a2f7c
2019-03-27 17:40:30 +00:00

15 lines
400 B
PHP

<?php
/**
* Interface that marks a DataUpdate as enqueuable via the JobQueue
*
* Such updates must be representable using IJobSpecification, so that
* they can be serialized into jobs and enqueued for later execution
*
* @since 1.27
*/
interface EnqueueableDataUpdate {
/**
* @return array (domain => DB domain ID, job => IJobSpecification)
*/
public function getAsJobSpecification();
}