wiki.techinc.nl/includes/deferred/TransactionRoundAwareUpdate.php
daniel e6e0ad2472 Replace "@stable for implementation" with "@stable to implement"
For compliance with the new version of the table interface policy
(T255803).

This patch was created by an automated search & replace operation
on the includes/ directory.

Bug: T257789
Change-Id: I17e5e92e24c708ffc846945a136347670a3a20c7
2020-07-13 11:05:49 +02:00

21 lines
602 B
PHP

<?php
/**
* Deferrable update that specifies whether it must run outside of any explicit
* LBFactory transaction round or must run inside of a round owned by doUpdate().
*
* @stable to implement
*
* @since 1.34
*/
interface TransactionRoundAwareUpdate {
/** @var int No explicit transaction round should be used */
public const TRX_ROUND_ABSENT = 1;
/** @var int An explicit transaction round owned by self::doUpdate should be used */
public const TRX_ROUND_PRESENT = 2;
/**
* @return int One of the class TRX_ROUND_* constants
*/
public function getTransactionRoundRequirement();
}