IronQueue::getIron()

IronMQ getIron() Get the underlying IronMQ instance. Return Value IronMQ

IronQueue::deleteMessage()

void deleteMessage(string $queue, string $id) Delete a message from the Iron queue. Parameters string $queue string $id Return Value void

IronQueue::bulk()

mixed bulk(array $jobs, mixed $data = '', string $queue = null) Push an array of jobs onto the queue. Parameters array $jobs mixed $data string $queue Return Value mixed

IronQueue

IronQueue class IronQueue extends Queue implements Queue (View source) Methods mixed pushOn(string $queue, string $job, mixed $data = '') Push a new job onto the queue. from Queue mixed laterOn(string $queue, DateTime|int $delay, string $job, mixed $data = '') Push a new job onto the queue after a delay. from Queue marshal() deprecated Marshal a push queue request and fire the job. mixed bulk(array $jobs, mixed $data = '', string $queue = null) Push an array of jobs onto the qu

IronJob::__construct()

void __construct(Container $container, IronQueue $iron, object $job, bool $pushed = false) Create a new job instance. Parameters Container $container IronQueue $iron object $job bool $pushed Return Value void

IronJob::release()

void release(int $delay) Release the job back into the queue. Parameters int $delay Return Value void

IronJob::isReleased()

bool isReleased() Determine if the job was released back into the queue. Return Value bool

IronJob::isDeletedOrReleased()

bool isDeletedOrReleased() Determine if the job has been deleted or released. Return Value bool

IronJob::isDeleted()

bool isDeleted() Determine if the job has been deleted. Return Value bool

IronJob::getRawBody()

string getRawBody() Get the raw body string for the job. Return Value string