__construct()
__construct() : void
AbstractQueueAdapter class constructor.
Abstract queue adapter class.
The AbstractQueueAdapter
class provides a foundation for building specific queue
adapters by defining common methods that a queue system should support. Queue adapters
are responsible for pushing jobs onto the queue and shifting jobs off the queue for
processing.
push(\Closure $closure, mixed ...$params) : int|string
Push a job onto the queue.
\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 the job identifier or status code.