%PDF- %PDF-
| Direktori : /home/graphicd/www/vebto/vendor/pda/pheanstalk/src/ |
| Current File : /home/graphicd/www/vebto/vendor/pda/pheanstalk/src/Job.php |
<?php
namespace Pheanstalk;
use Pheanstalk\Contract\JobIdInterface;
/**
* A job in a beanstalkd server.
*/
class Job implements JobIdInterface
{
const STATUS_READY = 'ready';
const STATUS_RESERVED = 'reserved';
const STATUS_DELAYED = 'delayed';
const STATUS_BURIED = 'buried';
/**
* @var int
*/
private $id;
/**
* @var string
*/
private $data;
/**
* @param int $id The job ID
* @param string $data The job data
*/
public function __construct(int $id, string $data)
{
$this->id = $id;
$this->data = $data;
}
/**
* The job ID, unique on the beanstalkd server.
*
* @return int
*/
public function getId(): int
{
return $this->id;
}
/**
* The job data.
*
* @return string
*/
public function getData(): string
{
return $this->data;
}
}