1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php
/**
* @link http://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license http://www.yiiframework.com/license/
*/
namespace yii\queue\beanstalk;
use yii\helpers\Console;
use yii\queue\cli\Action;
/**
* Info about queue status.
*
* @author Roman Zhuravlev <zhuravljov@gmail.com>
*/
class InfoAction extends Action
{
/**
* @var Queue
*/
public $queue;
/**
* Info about queue status.
*/
public function run()
{
Console::output($this->format('Statistical information about the tube:', Console::FG_GREEN));
foreach ($this->queue->getStatsTube() as $key => $value) {
Console::stdout($this->format("- $key: ", Console::FG_YELLOW));
Console::output($value);
}
}
}