MediaWiki
1.34.0
|
Job queue task description base code. More...
Public Member Functions | |
__construct ( $type, array $params, array $opts=[], Title $title=null) | |
getDeduplicationInfo () | |
Subclasses may need to override this to make duplication detection work. More... | |
getParams () | |
getReleaseTimestamp () | |
getRootJobParams () | |
getTitle () | |
getType () | |
hasRootJobParams () | |
ignoreDuplicates () | |
isRootJob () | |
toSerializableArray () | |
Static Public Member Functions | |
static | newFromArray (array $map) |
Protected Member Functions | |
validateParams (array $params) | |
Protected Attributes | |
array | $opts |
array | $params |
Array of job parameters or false if none. More... | |
Title | $title |
string | $type |
Job queue task description base code.
Example usage:
Definition at line 39 of file JobSpecification.php.
JobSpecification::__construct | ( | $type, | |
array | $params, | ||
array | $opts = [] , |
||
Title | $title = null |
||
) |
string | $type | |
array | $params | Map of key/values |
array | $opts | Map of key/values; includes 'removeDuplicates' |
Title | null | $title | Optional descriptive title |
Definition at line 58 of file JobSpecification.php.
References $opts, $params, $title, $type, Title\getDBkey(), Title\getNamespace(), Title\makeTitle(), NS_SPECIAL, and validateParams().
JobSpecification::getDeduplicationInfo | ( | ) |
Subclasses may need to override this to make duplication detection work.
The resulting map conveys everything that makes the job unique. This is only checked if ignoreDuplicates() returns true, meaning that duplicate jobs are supposed to be ignored.
Implements IJobSpecification.
Definition at line 116 of file JobSpecification.php.
References getParams(), getTitle(), and getType().
JobSpecification::getParams | ( | ) |
Implements IJobSpecification.
Definition at line 102 of file JobSpecification.php.
References $params.
Referenced by getDeduplicationInfo().
JobSpecification::getReleaseTimestamp | ( | ) |
Implements IJobSpecification.
Definition at line 106 of file JobSpecification.php.
References wfTimestampOrNull().
JobSpecification::getRootJobParams | ( | ) |
Implements IJobSpecification.
Definition at line 134 of file JobSpecification.php.
JobSpecification::getTitle | ( | ) |
Definition at line 98 of file JobSpecification.php.
References $title.
Referenced by getDeduplicationInfo().
JobSpecification::getType | ( | ) |
Implements IJobSpecification.
Definition at line 94 of file JobSpecification.php.
References $type.
Referenced by getDeduplicationInfo().
JobSpecification::hasRootJobParams | ( | ) |
Implements IJobSpecification.
Definition at line 141 of file JobSpecification.php.
Referenced by isRootJob().
JobSpecification::ignoreDuplicates | ( | ) |
Implements IJobSpecification.
Definition at line 112 of file JobSpecification.php.
JobSpecification::isRootJob | ( | ) |
Implements IJobSpecification.
Definition at line 146 of file JobSpecification.php.
References hasRootJobParams().
|
static |
array | $map | Field/value map |
Definition at line 171 of file JobSpecification.php.
References $title, and Title\makeTitle().
Referenced by EnqueueJob\run().
JobSpecification::toSerializableArray | ( | ) |
Definition at line 154 of file JobSpecification.php.
|
protected |
array | $params |
Definition at line 84 of file JobSpecification.php.
References $params.
Referenced by __construct().
|
protected |
Definition at line 50 of file JobSpecification.php.
Referenced by __construct(), and toSerializableArray().
|
protected |
Array of job parameters or false if none.
Definition at line 44 of file JobSpecification.php.
Referenced by __construct(), getParams(), toSerializableArray(), and validateParams().
|
protected |
Definition at line 47 of file JobSpecification.php.
Referenced by __construct(), getTitle(), and newFromArray().
|
protected |
Definition at line 41 of file JobSpecification.php.
Referenced by __construct(), getType(), and toSerializableArray().