Queue
interface Queue (View source)
Methods
int size(string $queue = null) Get the size of the queue. mixed push(string $job, mixed $data = '', string $queue = null) Push a new job onto the queue. mixed pushRaw(string $payload, string $queue = null, array $options = array()) Push a raw payload onto the queue. mixed later(DateTime|int $delay, string $job, mixed $data = '', string $queue = null) Push a new job onto the queue after a delay. mixed pushOn(string $queue, str