home
/
zktecojo
/
public_html
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
Queue
/
Jobs
➕ New
📤 Upload
✎ Editing:
BeanstalkdJob.php
← Back
<?php namespace Illuminate\Queue\Jobs; use Pheanstalk_Job; use Illuminate\Container\Container; use Pheanstalk_Pheanstalk as Pheanstalk; class BeanstalkdJob extends Job { /** * The Pheanstalk instance. * * @var \Pheanstalk_Pheanstalk */ protected $pheanstalk; /** * The Pheanstalk job instance. * * @var \Pheanstalk_Job */ protected $job; /** * Create a new job instance. * * @param \Illuminate\Container\Container $container * @param \Pheanstalk_Pheanstalk $pheanstalk * @param \Pheanstalk_Job $job * @param string $queue * @return void */ public function __construct(Container $container, Pheanstalk $pheanstalk, Pheanstalk_Job $job, $queue) { $this->job = $job; $this->queue = $queue; $this->container = $container; $this->pheanstalk = $pheanstalk; } /** * Fire the job. * * @return void */ public function fire() { $this->resolveAndFire(json_decode($this->getRawBody(), true)); } /** * Get the raw body string for the job. * * @return string */ public function getRawBody() { return $this->job->getData(); } /** * Delete the job from the queue. * * @return void */ public function delete() { parent::delete(); $this->pheanstalk->delete($this->job); } /** * Release the job back into the queue. * * @param int $delay * @return void */ public function release($delay = 0) { $priority = Pheanstalk::DEFAULT_PRIORITY; $this->pheanstalk->release($this->job, $priority, $delay); } /** * Bury the job in the queue. * * @return void */ public function bury() { $this->pheanstalk->bury($this->job); } /** * Get the number of times the job has been attempted. * * @return int */ public function attempts() { $stats = $this->pheanstalk->statsJob($this->job); return (int) $stats->reserves; } /** * Get the job identifier. * * @return string */ public function getJobId() { return $this->job->getId(); } /** * Get the IoC container instance. * * @return \Illuminate\Container\Container */ public function getContainer() { return $this->container; } /** * Get the underlying Pheanstalk instance. * * @return \Pheanstalk_Pheanstalk */ public function getPheanstalk() { return $this->pheanstalk; } /** * Get the underlying Pheanstalk job. * * @return \Pheanstalk_Job */ public function getPheanstalkJob() { return $this->job; } }
💾 Save Changes
Cancel
📤 Upload File
×
Select File
Upload
Cancel
➕ Create New
×
Type
📄 File
📁 Folder
Name
Create
Cancel
✎ Rename Item
×
Current Name
New Name
Rename
Cancel
🔐 Change Permissions
×
Target File
Permission (e.g., 0755, 0644)
0755
0644
0777
Apply
Cancel