Projet

Général

Profil

Paste
Statistiques
| Branche: | Révision:

root / htmltest / sites / all / modules / job_scheduler @ 56383c7f

Nom Taille Révision Âge Auteur Commentaire
  modules 85ad3d82 plus de 10 ans Assos Assos Append of all multiassos project to git
CHANGELOG.txt 1,01 ko 85ad3d82 plus de 10 ans Assos Assos Append of all multiassos project to git
JobScheduler.inc 6,08 ko 85ad3d82 plus de 10 ans Assos Assos Append of all multiassos project to git
JobSchedulerCronTab.inc 8,43 ko 85ad3d82 plus de 10 ans Assos Assos Append of all multiassos project to git
LICENSE.txt 17,7 ko 85ad3d82 plus de 10 ans Assos Assos Append of all multiassos project to git
README.txt 3,48 ko 85ad3d82 plus de 10 ans Assos Assos Append of all multiassos project to git
job_scheduler.api.php 1,42 ko 85ad3d82 plus de 10 ans Assos Assos Append of all multiassos project to git
job_scheduler.info 352 octets 85ad3d82 plus de 10 ans Assos Assos Append of all multiassos project to git
job_scheduler.install 4,89 ko 85ad3d82 plus de 10 ans Assos Assos Append of all multiassos project to git
job_scheduler.module 4,12 ko 85ad3d82 plus de 10 ans Assos Assos Append of all multiassos project to git

Dernières révisions

# Date Auteur Commentaire
85ad3d82 07/01/2014 22:05 Assos Assos

Append of all multiassos project to git

Voir les révisions

README


Job Scheduler

Simple API for scheduling tasks once at a predetermined time or periodically at
a fixed interval.

Usage

Declare scheduler.

function example_cron_job_scheduler_info() {
$schedulers = array();
$schedulers['example_unpublish'] = array(
'worker callback' => 'example_unpublish_nodes',
);
return $schedulers;
}

Add a job.

$job = array(
'type' => 'story',
'id' => 12,
'period' => 3600,
'periodic' => TRUE,
);
JobScheduler::get('example_unpublish')->set($job);

Work off a job.

function example_unpublish_nodes($job) {
// Do stuff.
}

Remove a job.

$job = array(
'type' => 'story',
'id' => 12,
);
JobScheduler::get('example_unpublish')->remove($job);

Optionally jobs can declared together with a schedule in a hook_cron_job_scheduler_info().

function example_cron_job_scheduler_info() {
$schedulers = array();
$schedulers['example_unpublish'] = array(
'worker callback' => 'example_unpublish_nodes',
'jobs' => array(
array('type' => 'story', 'id' => 12, 'period' => 3600, 'periodic' => TRUE),
)
);
return $schedulers;
}

Jobs can have a 'crontab' instead of a period. Crontab syntax are Unix-like formatted crontab lines.
Example of job with crontab.

// This will create a job that will be triggered from monday to friday, from january to july, every two hours
function example_cron_job_scheduler_info() {
$schedulers = array();
$schedulers['example_unpublish'] = array(
'worker callback' => 'example_unpublish_nodes',
'jobs' => array(
array('type' => 'story', 'id' => 12, 'crontab' => '0 */2 * january-july mon-fri', 'periodic' => TRUE),
)
);
return $schedulers;
}

Read more about crontab syntax, http://linux.die.net/man/5/crontab

Drupal Queue integration

Optionally, at the scheduled time Job Scheduler can queue a job for execution,
rather than executing the job directly. This is useful when many jobs need to
be executed or when the job's expected execution time is very long.

More information on Drupal Queue: http://api.drupal.org/api/group/queue/7

Instead of declaring a worker callback, declare a queue name.

function example_cron_job_scheduler_info() {
$schedulers = array();
$schedulers['example_unpublish'] = array(
'queue name' => 'example_unpublish_queue',
);
return $schedulers;
}

This of course assumes that you have declared a queue. Notice how in this
pattern the queue callback contains the actual worker callback.

function example_cron_queue_info() {
$schedulers = array();
$schedulers['example_unpublish_queue'] = array(
'worker callback' => 'example_unpublish_nodes',
);
return $schedulers;
}

Work off a job: when using a queue, Job Scheduler reserves a job for one hour
giving the queue time to work off a job before it reschedules it. This means
that the worker callback needs to reset the job's schedule flag in order to
allow renewed scheduling.

function example_unpublish_nodes($job) {
// Do stuff.
// Set the job again so that its reserved flag is reset.
JobScheduler::get('example_unpublish')->set($job);
}

Example

See Feeds module.

Hidden settings

Hidden settings are variables that you can define by adding them to the $conf
array in your settings.php file.

Name: 'job_scheduler_class_' . $name
Default: 'JobScheduler'
Description: The class to use for managing a particular schedule.

Formats disponibles : Atom