You are here

public function AcquiaPurgeQueueInterface::claimItemMultiple in Acquia Purge 7

Claims multiple items from the queue for processing.

Parameters

int $claims: Determines how many claims at once should be claimed from the queue. When the queue is unable to return as many items as requested it will return as much items as it can.

int $lease_time: How long the processing is expected to take in seconds, defaults to an hour. After this lease expires, the item will be reset and another consumer can claim the item. For idempotent tasks (which can be run multiple times without side effects), shorter lease times would result in lower latency in case a consumer fails. For tasks that should not be run more than once (non-idempotent), a larger lease time will make it more rare for a given task to run multiple times in cases of failure, at the cost of higher latency.

Return value

AcquiaPurgeInvalidationInterface[] On success we return a non-associative array with item objects. When the queue has no items that can be claimed, this doesn't return FALSE as claimItem() does, but an empty array instead.

If claims return, the objects have at least these properties:

  • data: the same as what what passed into createItem().
  • item_id: the unique ID returned from createItem().
  • created: timestamp when the item was put into the queue.
1 method overrides AcquiaPurgeQueueInterface::claimItemMultiple()
AcquiaPurgeQueueEfficient::claimItemMultiple in lib/queue/AcquiaPurgeQueueEfficient.php
Claims multiple items from the queue for processing.

File

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

Class

AcquiaPurgeQueueInterface
DrupalReliableQueueInterface derivative supporting efficient storage models.

Code

public function claimItemMultiple($claims = 10, $lease_time = 3600);