MediaWiki  1.29.2
NullJob.php
Go to the documentation of this file.
1 <?php
47 class NullJob extends Job {
53  parent::__construct( 'null', $title, $params );
54  if ( !isset( $this->params['lives'] ) ) {
55  $this->params['lives'] = 1;
56  }
57  if ( !isset( $this->params['usleep'] ) ) {
58  $this->params['usleep'] = 0;
59  }
60  $this->removeDuplicates = !empty( $this->params['removeDuplicates'] );
61  }
62 
63  public function run() {
64  if ( $this->params['usleep'] > 0 ) {
65  usleep( $this->params['usleep'] );
66  }
67  if ( $this->params['lives'] > 1 ) {
69  $params['lives']--;
70  $job = new self( $this->title, $params );
71  JobQueueGroup::singleton()->push( $job );
72  }
73 
74  return true;
75  }
76 }
Job\$title
Title $title
Definition: Job.php:42
NullJob
Degenerate job that does nothing, but can optionally replace itself in the queue and/or sleep for a b...
Definition: NullJob.php:47
Job\$params
array $params
Array of job parameters.
Definition: Job.php:36
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
Job
Class to both describe a background job and handle jobs.
Definition: Job.php:31
NullJob\__construct
__construct(Title $title, array $params)
Definition: NullJob.php:52
Title
Represents a title within MediaWiki.
Definition: Title.php:39
$job
if(count( $args)< 1) $job
Definition: recompressTracked.php:47
JobQueueGroup\singleton
static singleton( $wiki=false)
Definition: JobQueueGroup.php:71
NullJob\run
run()
Run the job.
Definition: NullJob.php:63
array
the array() calling protocol came about after MediaWiki 1.4rc1.