| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?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;
- }
- }
|