W3cubDocs

/CakePHP 4.1

Class MiddlewareQueue

Provides methods for creating and manipulating a "queue" of middlewares.

This queue is used to process a request and generate response via \Cake\Http\Runner.

Namespace: Cake\Http

Properties summary

  • $position protected
    int

    Internal position for iterator.

  • $queue protected
    array

    The queue of middlewares.

Method Summary

  • __construct() public

    Constructor

  • add() public

    Append a middleware to the end of the queue.

  • count() public

    Get the number of connected middleware layers.

  • current() public

    Returns the current middleware.

  • insertAfter() public

    Insert a middleware object after the first matching class.

  • insertAt() public

    Insert a middleware at a specific index.

  • insertBefore() public

    Insert a middleware before the first matching class.

  • key() public

    Return the key of the middleware.

  • next() public

    Moves the current position to the next middleware.

  • prepend() public

    Prepend a middleware to the start of the queue.

  • push() public

    Alias for MiddlewareQueue::add().

  • resolve() protected

    Resolve middleware name to a PSR 15 compliant middleware instance.

  • rewind() public

    Rewinds back to the first element of the queue.

  • seek() public

    Seeks to a given position in the queue.

  • valid() public

    Checks if current position is valid.

Method Detail

__construct() public

__construct(array $middleware)

Constructor

Parameters

array $middleware optional

The list of middleware to append.

add() public

add(mixed $middleware)

Append a middleware to the end of the queue.

Parameters

string|array|\Closure|\Psr\Http\Server\MiddlewareInterface $middleware

The middleware(s) to append.

Returns

$this

count() public

count()

Get the number of connected middleware layers.

Implement the Countable interface.

Returns

int

current() public

current()

Returns the current middleware.

Returns

\Psr\Http\Server\MiddlewareInterface

See Also

\Iterator::current()

insertAfter() public

insertAfter(string $class, mixed $middleware)

Insert a middleware object after the first matching class.

Finds the index of the first middleware that matches the provided class, and inserts the supplied middleware after it. If the class is not found, this method will behave like add().

Parameters

string $class

The classname to insert the middleware before.

string|\Closure|\Psr\Http\Server\MiddlewareInterface $middleware

The middleware to insert.

Returns

$this

insertAt() public

insertAt(int $index, mixed $middleware)

Insert a middleware at a specific index.

If the index already exists, the new middleware will be inserted, and the existing element will be shifted one index greater.

Parameters

int $index

The index to insert at.

string|\Closure|\Psr\Http\Server\MiddlewareInterface $middleware

The middleware to insert.

Returns

$this

insertBefore() public

insertBefore(string $class, mixed $middleware)

Insert a middleware before the first matching class.

Finds the index of the first middleware that matches the provided class, and inserts the supplied middleware before it.

Parameters

string $class

The classname to insert the middleware before.

string|\Closure|\Psr\Http\Server\MiddlewareInterface $middleware

The middleware to insert.

Returns

$this

Throws

LogicException
If middleware to insert before is not found.

key() public

key()

Return the key of the middleware.

Returns

int

See Also

\Iterator::key()

next() public

next()

Moves the current position to the next middleware.

See Also

\Iterator::next()

prepend() public

prepend(mixed $middleware)

Prepend a middleware to the start of the queue.

Parameters

string|array|\Closure|\Psr\Http\Server\MiddlewareInterface $middleware

The middleware(s) to prepend.

Returns

$this

push() public

push(mixed $middleware)

Alias for MiddlewareQueue::add().

Parameters

string|array|\Closure|\Psr\Http\Server\MiddlewareInterface $middleware

The middleware(s) to append.

Returns

$this

See Also

\Cake\Http\MiddlewareQueue::add()

resolve() protected

resolve(mixed $middleware)

Resolve middleware name to a PSR 15 compliant middleware instance.

Parameters

string|\Closure|\Psr\Http\Server\MiddlewareInterface $middleware

The middleware to resolve.

Returns

\Psr\Http\Server\MiddlewareInterface

Throws

RuntimeException
If Middleware not found.

rewind() public

rewind()

Rewinds back to the first element of the queue.

See Also

\Iterator::rewind()

seek() public

seek(mixed $position)

Seeks to a given position in the queue.

Parameters

int $position

The position to seek to.

See Also

\SeekableIterator::seek()

valid() public

valid()

Checks if current position is valid.

Returns

bool

See Also

\Iterator::valid()

Property Detail

$position protected

Internal position for iterator.

Type

int

$queue protected

The queue of middlewares.

Type

array

© 2005–present The Cake Software Foundation, Inc.
Licensed under the MIT License.
CakePHP is a registered trademark of Cake Software Foundation, Inc.
We are not endorsed by or affiliated with CakePHP.
https://api.cakephp.org/4.1/class-Cake.Http.MiddlewareQueue.html