20 lines
542 B
PHP
20 lines
542 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().
|
||
|
|
*
|
||
|
|
* @since 1.34
|
||
|
|
*/
|
||
|
|
interface TransactionRoundAwareUpdate {
|
||
|
|
/** @var int No transaction round should be used */
|
||
|
|
const TRX_ROUND_ABSENT = 1;
|
||
|
|
/** @var int A transaction round owned by self::doUpdate should be used */
|
||
|
|
const TRX_ROUND_PRESENT = 2;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @return int One of the class TRX_ROUND_* constants
|
||
|
|
*/
|
||
|
|
public function getTransactionRoundRequirement();
|
||
|
|
}
|