You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
976 B
52 lines
976 B
9 months ago
|
<?php
|
||
|
|
||
|
namespace addons\shopro\job;
|
||
|
|
||
|
use think\queue\Job;
|
||
|
|
||
|
class Test extends BaseJob
|
||
|
{
|
||
|
/**
|
||
|
* 普通优先级队列测试
|
||
|
*/
|
||
|
public function shopro(Job $job, $data)
|
||
|
{
|
||
|
// 创建目录
|
||
|
$this->mkdir();
|
||
|
|
||
|
// 写入日志文件
|
||
|
$filename = RUNTIME_PATH . 'storage/queue/shopro.log';
|
||
|
file_put_contents($filename, date('Y-m-d H:i:s'));
|
||
|
|
||
|
$job->delete();
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 高优先级队列测试
|
||
|
*/
|
||
|
public function shoproHigh(Job $job, $data)
|
||
|
{
|
||
|
// 创建目录
|
||
|
$this->mkdir();
|
||
|
|
||
|
// 写入日志文件
|
||
|
$filename = RUNTIME_PATH . 'storage/queue/shopro-high.log';
|
||
|
file_put_contents($filename, date('Y-m-d H:i:s'));
|
||
|
|
||
|
$job->delete();
|
||
|
}
|
||
|
|
||
|
|
||
|
/**
|
||
|
* 创建目录
|
||
|
*/
|
||
|
private function mkdir()
|
||
|
{
|
||
|
$dir = RUNTIME_PATH . 'storage/queue/';
|
||
|
if (!is_dir($dir)) {
|
||
|
@mkdir($dir, 0755, true);
|
||
|
}
|
||
|
}
|
||
|
}
|