You are here

public function EntityQueueInterface::getActAsQueue in Entityqueue 8

Returns the behavior of exceeding the maximum number of queue items.

If TRUE, when a maximum size is set and it is exceeded, the queue will be truncated to the maximum size by removing items from the front of the queue. However, if the 'reverse' option is TRUE as well, the items that exceed the maximum size will be removed from the top instead.

Return value

bool

1 method overrides EntityQueueInterface::getActAsQueue()
EntityQueue::getActAsQueue in src/Entity/EntityQueue.php
Returns the behavior of exceeding the maximum number of queue items.

File

src/EntityQueueInterface.php, line 86

Class

EntityQueueInterface
Provides an interface defining a EntityQueue entity.

Namespace

Drupal\entityqueue

Code

public function getActAsQueue();