This makes it consistent with what JobQueueGroup actually expects. Change-Id: Id6c6b3bf19fb1e85a2e3e231d216974d831a2f7c
15 lines
400 B
PHP
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();
|
|
}
|