MediaWiki REL1_32
|
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. | |
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. | |
Title | $title |
string | $type |
Job queue task description base code.
Example usage:
Definition at line 103 of file JobSpecification.php.
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 122 of file JobSpecification.php.
References $opts, $params, $title, $type, NS_SPECIAL, title, type, 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 169 of file JobSpecification.php.
References getParams(), getTitle(), and getType().
JobSpecification::getParams | ( | ) |
Implements IJobSpecification.
Definition at line 155 of file JobSpecification.php.
References $params.
Referenced by getDeduplicationInfo().
JobSpecification::getReleaseTimestamp | ( | ) |
Implements IJobSpecification.
Definition at line 159 of file JobSpecification.php.
References wfTimestampOrNull().
JobSpecification::getRootJobParams | ( | ) |
Implements IJobSpecification.
Definition at line 187 of file JobSpecification.php.
JobSpecification::getTitle | ( | ) |
Implements IJobSpecification.
Definition at line 151 of file JobSpecification.php.
References $title.
Referenced by getDeduplicationInfo().
JobSpecification::getType | ( | ) |
Implements IJobSpecification.
Definition at line 147 of file JobSpecification.php.
References $type.
Referenced by getDeduplicationInfo().
JobSpecification::hasRootJobParams | ( | ) |
Implements IJobSpecification.
Definition at line 194 of file JobSpecification.php.
Referenced by isRootJob().
JobSpecification::ignoreDuplicates | ( | ) |
Implements IJobSpecification.
Definition at line 165 of file JobSpecification.php.
JobSpecification::isRootJob | ( | ) |
Implements IJobSpecification.
Definition at line 199 of file JobSpecification.php.
References hasRootJobParams().
|
static |
array | $map | Field/value map |
Definition at line 224 of file JobSpecification.php.
References $title.
Referenced by EnqueueJob\run().
JobSpecification::toSerializableArray | ( | ) |
|
protected |
array | $params |
Definition at line 137 of file JobSpecification.php.
References $params, as, and validateParams().
Referenced by __construct(), and validateParams().
|
protected |
Definition at line 114 of file JobSpecification.php.
Referenced by __construct(), and toSerializableArray().
|
protected |
Array of job parameters or false if none.
Definition at line 108 of file JobSpecification.php.
Referenced by __construct(), getParams(), toSerializableArray(), and validateParams().
|
protected |
Definition at line 111 of file JobSpecification.php.
Referenced by __construct(), getTitle(), and newFromArray().
|
protected |
Definition at line 105 of file JobSpecification.php.
Referenced by __construct(), getType(), and toSerializableArray().