QueueingDispatcher::pipeThrough()

$this pipeThrough(array $pipes) Set the pipes commands should be piped through before dispatching. Parameters array $pipes Return Value $this

QueueingFactory

QueueingFactory interface QueueingFactory implements Factory (View source) Methods Cookie make(string $name, string $value, int $minutes, string $path = null, string $domain = null, bool $secure = false, bool $httpOnly = true) Create a new cookie instance. from Factory Cookie forever(string $name, string $value, string $path = null, string $domain = null, bool $secure = false, bool $httpOnly = true) Create a cookie that lasts "forever" (five years). from Factory Cookie forget(stri

QueueingFactory::forever()

Cookie forever(string $name, string $value, string $path = null, string $domain = null, bool $secure = false, bool $httpOnly = true) Create a cookie that lasts "forever" (five years). Parameters string $name string $value string $path string $domain bool $secure bool $httpOnly Return Value Cookie

QueueingFactory::forget()

Cookie forget(string $name, string $path = null, string $domain = null) Expire the given cookie. Parameters string $name string $path string $domain Return Value Cookie

QueueingFactory::getQueuedCookies()

array getQueuedCookies() Get the cookies which have been queued for the next request. Return Value array

QueueingFactory::make()

Cookie make(string $name, string $value, int $minutes, string $path = null, string $domain = null, bool $secure = false, bool $httpOnly = true) Create a new cookie instance. Parameters string $name string $value int $minutes string $path string $domain bool $secure bool $httpOnly Return Value Cookie

QueueingFactory::queue()

void queue() Queue a cookie to send with the next response. Return Value void

QueueingFactory::unqueue()

unqueue(string $name) Remove a cookie from the queue. Parameters string $name

QueueInterface

QueueInterface interface QueueInterface (View source) Methods 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. Job|null pop(string $queue = null) Pop the next job off of the queue.

QueueInterface::later()

mixed later(DateTime|int $delay, string $job, mixed $data = '', string $queue = null) Push a new job onto the queue after a delay. Parameters DateTime|int $delay string $job mixed $data string $queue Return Value mixed