blob: 5e5ba709841989e24eea4a49c7f09001f56a6eb0 (
plain)
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
<?php
namespace Pheanstalk\Command;
use Pheanstalk\ResponseParser;
/**
* The 'use' command.
*
* The "use" command is for producers. Subsequent put commands will put jobs into
* the tube specified by this command. If no use command has been issued, jobs
* will be put into the tube named "default".
*
* @author Paul Annesley
* @package Pheanstalk
* @license http://www.opensource.org/licenses/mit-license.php
*/
class UseCommand
extends AbstractCommand
implements \Pheanstalk\ResponseParser
{
/**
* @var string
*/
private $_tube;
/**
* @param string $tube The name of the tube to use
*/
public function __construct($tube)
{
$this->_tube = $tube;
}
/* (non-phpdoc)
* @see Command::getCommandLine()
*/
public function getCommandLine()
{
return 'use '.$this->_tube;
}
/* (non-phpdoc)
* @see ResponseParser::parseResponse()
*/
public function parseResponse($responseLine, $responseData)
{
return $this->_createResponse('USING', array(
'tube' => preg_replace('#^USING (.+)$#', '$1', $responseLine)
));
}
}
|