You are here

public function QueueData::process in Warmer 2.x

Same name and namespace in other branches
  1. 8 src/QueueData.php \Drupal\warmer\QueueData::process()

Function to execute after claiming the item.

File

src/QueueData.php, line 51

Class

QueueData
Value object to store in the queue with all the infor to process a batch.

Namespace

Drupal\warmer

Code

public function process() {
  call_user_func($this->callback, $this->ids, $this->warmerId);
}