Queue\Beanstalk\Job::delete

public delete () Removes a job from the server entirely

Queue\Beanstalk\Job::bury

public bury ([mixed $priority]) The bury command puts a job into the “buried” state. Buried jobs are put into a FIFO linked list and will not be touched by the server again until a client kicks them with the “kick” command.

Queue\Beanstalk\Job

Source on GitHub Represents a job in a beanstalk queue Methods public getId () public getBody () public __construct (Phalcon\Queue\Beanstalk $queue, mixed $id, mixed $body) public delete () Removes a job from the server entirely public release ([mixed $priority], [mixed $delay]) The release command puts a reserved job back into the ready queue (and marks its state as “ready”) to be run by any client. It is normally used when the job fails because of a transitory error. public bury ([mixed $prio

Queue\Beanstalk\Exception

extends class Phalcon\Exception implements Throwable Source on GitHub Methods final private Exception __clone () inherited from Exception Clone the exception public __construct ([string $message], [int $code], [Exception $previous]) inherited from Exception Exception constructor public __wakeup () inherited from Exception ... final public string getMessage () inherited from Exception Gets the Exception message final public int getCode () inherited from Exception Gets the Exception code fin

Queue\Beanstalk::watch

public watch (mixed $tube) The watch command adds the named tube to the watch list for the current connection.

Queue\Beanstalk::statsTube

public statsTube (mixed $tube) Gives statistical information about the specified tube if it exists.

Queue\Beanstalk::stats

public stats () Gives statistical information about the system as a whole.

Queue\Beanstalk::reserve

public reserve ([mixed $timeout]) Reserves/locks a ready job from the specified tube.

Queue\Beanstalk::readYaml

final public readYaml () Fetch a YAML payload from the Beanstalkd server

Queue\Beanstalk::readStatus

final public readStatus () Reads the latest status from the Beanstalkd server