You are here

public function AcquiaPurgeQueueInterface::releaseItemMultiple in Acquia Purge 7

Release multiple items that the worker could not process.

Another worker can come in and process these before the timeout expires.

Parameters

array $items: Non-associative array with item objects as returned by claimItemMultiple() or DrupalQueueInterface::claimItem().

Return value

array Empty array upon full success, else the remaining items that failed.

1 method overrides AcquiaPurgeQueueInterface::releaseItemMultiple()
AcquiaPurgeQueueEfficient::releaseItemMultiple in lib/queue/AcquiaPurgeQueueEfficient.php
Release multiple items that the worker could not process.

File

lib/queue/AcquiaPurgeQueueInterface.php, line 111
Contains AcquiaPurgeQueueInterface.

Class

AcquiaPurgeQueueInterface
DrupalReliableQueueInterface derivative supporting efficient storage models.

Code

public function releaseItemMultiple(array $items);