mirror of
https://github.com/idanoo/php-resque.git
synced 2024-11-22 00:11:53 +00:00
idanoo
80d64e79ff
2.0.0 (2021-02-19) Moved to PSR-4 Namespaced codebase Added more comments throughout Co-Authored-By: idanoo <daniel@m2.nz> Co-Committed-By: idanoo <daniel@m2.nz>
53 lines
1.6 KiB
PHP
53 lines
1.6 KiB
PHP
<?php
|
|
|
|
namespace Resque\Example;
|
|
|
|
// Somewhere in our application, we need to register:
|
|
// \Resque\Event::listen('afterEnqueue', ['My_Resque_Plugin', 'afterEnqueue']);
|
|
// \Resque\Event::listen('beforeFirstFork', ['My_Resque_Plugin', 'beforeFirstFork']);
|
|
// \Resque\Event::listen('beforeFork', ['My_Resque_Plugin', 'beforeFork']);
|
|
// \Resque\Event::listen('afterFork', ['My_Resque_Plugin', 'afterFork']);
|
|
// \Resque\Event::listen('beforePerform', ['My_Resque_Plugin', 'beforePerform']);
|
|
// \Resque\Event::listen('afterPerform', ['My_Resque_Plugin', 'afterPerform']);
|
|
// \Resque\Event::listen('onFailure', ['My_Resque_Plugin', 'onFailure']);
|
|
|
|
class SampleResquePlugin
|
|
{
|
|
public static function afterEnqueue($class, $arguments)
|
|
{
|
|
echo "Job was queued for " . $class . ". Arguments:";
|
|
print_r($arguments);
|
|
}
|
|
|
|
public static function beforeFirstFork($worker)
|
|
{
|
|
echo "Worker started. Listening on queues: " . implode(', ', $worker->queues(false)) . "\n";
|
|
}
|
|
|
|
public static function beforeFork($job)
|
|
{
|
|
echo "Just about to fork to run " . $job;
|
|
}
|
|
|
|
public static function afterFork($job)
|
|
{
|
|
echo "Forked to run " . $job . ". This is the child process.\n";
|
|
}
|
|
|
|
public static function beforePerform($job)
|
|
{
|
|
echo "Cancelling " . $job . "\n";
|
|
// throw new Resque_Job_DontPerform;
|
|
}
|
|
|
|
public static function afterPerform($job)
|
|
{
|
|
echo "Just performed " . $job . "\n";
|
|
}
|
|
|
|
public static function onFailure($exception, $job)
|
|
{
|
|
echo $job . " threw an exception:\n" . $exception;
|
|
}
|
|
}
|