public function AcquiaPurgeQueueInterface::createItemMultiple in Acquia Purge 7
Add multiple items to the queue and store them efficiently.
Parameters
array $items: Non-associative array containing arrays with arbitrary data to be associated with the new tasks in the queue.
Return value
true|false TRUE if all items got created successfully, or FALSE if just one of them failed being created.
1 method overrides AcquiaPurgeQueueInterface::createItemMultiple()
- AcquiaPurgeQueueEfficient::createItemMultiple in lib/
queue/ AcquiaPurgeQueueEfficient.php - Add multiple items to the queue and store them efficiently.
File
- lib/
queue/ AcquiaPurgeQueueInterface.php, line 59 - Contains AcquiaPurgeQueueInterface.
Class
- AcquiaPurgeQueueInterface
- DrupalReliableQueueInterface derivative supporting efficient storage models.
Code
public function createItemMultiple(array $items);