\Omega\Queue\Adapter QueueAdapterInterface

Queue adapter interface.

QueueAdapterInterface defines the contract for queue adapters in the Omega Queue Package.

Summary

Methods
Constants
push()
shift()
No public constants found

Methods

push()

push(\Closure  $closure, mixed  ...$params) : int|string

Push a job onto the queue.

Parameters

\Closure $closure

Holds the closure representing the job to be pushed onto the queue.

mixed $params variadic

Holds additional parameters needed for the job.

Returns

int|string —

Returns the job identifier or status code.

shift()

shift() : ?\Omega\Queue\Job

Shift the next job off the queue.

Returns

?\Omega\Queue\Job —

Returns the next job to be processed, or null if the queue is empty.