Wikibase
MediaWiki Wikibase extension
|
Each ChangeOp applied will return an instance of ChangeOpResult. More...
Public Member Functions | |
getEntityId () | |
The id of the entity document that the change op was applied to. | |
isEntityChanged () | |
Whether the entity document was actually changed in any way as a result of applying the change op to it. | |
validate () | |
Validate a ChangeOpResult. | |
Each ChangeOp applied will return an instance of ChangeOpResult.
Wikibase\Repo\ChangeOp\ChangeOpResult::getEntityId | ( | ) |
The id of the entity document that the change op was applied to.
Implemented in Wikibase\Repo\ChangeOp\ChangeOpFingerprintResult, Wikibase\Repo\ChangeOp\ChangeOpsResult, and Wikibase\Repo\ChangeOp\GenericChangeOpResult.
Wikibase\Repo\ChangeOp\ChangeOpResult::isEntityChanged | ( | ) |
Whether the entity document was actually changed in any way as a result of applying the change op to it.
Implemented in Wikibase\Repo\ChangeOp\ChangeOpFingerprintResult, Wikibase\Repo\ChangeOp\ChangeOpsResult, and Wikibase\Repo\ChangeOp\GenericChangeOpResult.
Wikibase\Repo\ChangeOp\ChangeOpResult::validate | ( | ) |
Validate a ChangeOpResult.
Mostly suitable for validations that need to run only on the parts that have been actually changed on an entity. Example of those are expensive validations that need to run on db or other external slower types of stores.
For simpler and less-expensive validations, ChangeOp::validate
can be used as well.
Concrete example: Checking for uniqueness of terms (fingerprint) across the store is an expensive operation. It better be checked only on terms that are actually going to change on entity, rather than validate uniqueness on all terms including the ones that are not changed.
Implemented in Wikibase\Repo\ChangeOp\ChangeOpFingerprintResult, Wikibase\Repo\ChangeOp\ChangeOpsResult, and Wikibase\Repo\ChangeOp\GenericChangeOpResult.