CentralIdLookup: Add @since to factoryNonLocal()
[mediawiki.git] / includes / deferred / EnqueueableDataUpdate.php
blob925da36894c494b88a34cfadfd6da1284a2997ab
1 <?php
2 /**
3 * Interface that marks a DataUpdate as enqueuable via the JobQueue
5 * Such updates must be representable using IJobSpecification, so that
6 * they can be serialized into jobs and enqueued for later execution
8 * @stable to implement
10 * @since 1.27
12 interface EnqueueableDataUpdate {
13 /**
14 * @return array (domain => DB domain ID, job => IJobSpecification)
16 public function getAsJobSpecification();