实施队列&使用IronMQ在我的项目中使用Laravel 5.1中的作业,我现在可以将作业发送到IronMQ队列,如下图所示:
我现在想要的是在我的工作中的句柄功能中获取当前队列中的消息数(红色框中的数字),找到下面的作业代码:
class GetWords extends Job implements SelfHandling, ShouldQueue{
use InteractsWithQueue, SerializesModels;
/**
* Create a new job instance.
*/
public function __construct(Url $url)
{
}
/**
* Execute the job.
*/
public function handle()
{
//getting the name of queue
dd($this->job->getName()); //return 'words'
$currentNumberMsgsInQueue = ?????; //i can't find how
//Condition
if($currentNumberMsgsInQueue == 10){
//Do something
}
}
}
问题是:如何使用Laravel获取IronMQ队列中的排队作业(消息)数量?
答案 0 :(得分:1)
经过几天的搜索后,我找到了答案, Laravel 5.1 中没有method/function
可以为我们提供 IronMQ 中的排队作业数量。
但是针对 IronMQ On-Premise API Reference 给我们一个解决方案,它是一个 REST/HTTP API ,它允许我们使用 javascript查询不同的请求设置/获取我们想要的所有内容/队列(获取队列,更新队列,列表队列...)和从/到每个队列中的消息(按ID获取消息,获取所有消息,清除消息... )。
https:// {Host} / {API Version} / projects / {Project_ID} / queues / {Queue_Name} / messages / webhook?oauth = {Token}
例如,如果我们想要队列中的邮件数量,我们只需 Get Queue Info 并从结果中查看size
。
GET /queues/{Queue Name}
一个实际例子:
您可以在 Webhook网址的情况下在项目的相关队列中找到您的第一个基本链接(参见下图):
JS代码:
//To get queue info we have url : GET /queues/{Queue Name}
var url = "https://{Host}/{API Version}/projects/{Project_ID}/queues/{Queue_Name}?oauth={Token}";
//Using ajax $.get
$.get( url ,
function( result ) {
alert( "Queue size is :" + result["queue"]["size"]);
});
结果:
{
"queue": {
"project_id": 123,
"name": "my_queue",
"size": 0,
"total_messages": 0,
"message_timeout": 60,
"message_expiration": 604800,
"type": "pull/unicast/multicast",
"push": {
"subscribers": [
{
"name": "subscriber_name",
"url": "http://mysterious-brook-1807.herokuapp.com/ironmq_push_1",
"headers": {
"Content-Type": "application/json"
}
}
],
"retries": 3,
"retries_delay": 60,
"error_queue": "error_queue_name",
"rate_limit": 10
}
}
}