class DownloadCountCacheProcessor in Download Count 8
Queue Worker for Download count cache.
Plugin annotation
@QueueWorker(
id = "download_count",
title = @Translation("Download Count Cache Processor"),
cron = {"time" = 60}
)
Hierarchy
- class \Drupal\Component\Plugin\PluginBase implements DerivativeInspectionInterface, PluginInspectionInterface
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
- class \Drupal\download_count\Plugin\QueueWorker\DownloadCountCacheProcessor
- class \Drupal\Core\Queue\QueueWorkerBase implements QueueWorkerInterface
Expanded class hierarchy of DownloadCountCacheProcessor
File
- src/
Plugin/ QueueWorker/ DownloadCountCacheProcessor.php, line 17
Namespace
Drupal\download_count\Plugin\QueueWorkerView source
class DownloadCountCacheProcessor extends QueueWorkerBase {
/**
* {@inheritdoc}
*/
public function processItem($data) {
// Logs a notice.
$connection = Database::getConnection();
$connection
->merge('download_count_cache')
->key([
'type' => $data->type,
'id' => $data->id,
'fid' => $data->fid,
'date' => $data->date,
])
->fields([
'count' => $data->count,
])
->expression('count', 'count + :inc', [
':inc' => $data->count,
])
->execute();
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DownloadCountCacheProcessor:: |
public | function |
Works on a single queue item. Overrides QueueWorkerInterface:: |
|
PluginBase:: |
protected | property | Configuration information passed into the plugin. | 1 |
PluginBase:: |
protected | property | The plugin implementation definition. | 1 |
PluginBase:: |
protected | property | The plugin_id. | |
PluginBase:: |
constant | A string which is used to separate base plugin IDs from the derivative ID. | ||
PluginBase:: |
public | function |
Gets the base_plugin_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the derivative_id of the plugin instance. Overrides DerivativeInspectionInterface:: |
|
PluginBase:: |
public | function |
Gets the definition of the plugin implementation. Overrides PluginInspectionInterface:: |
3 |
PluginBase:: |
public | function |
Gets the plugin_id of the plugin instance. Overrides PluginInspectionInterface:: |
|
PluginBase:: |
public | function | Determines if the plugin is configurable. | |
PluginBase:: |
public | function | Constructs a \Drupal\Component\Plugin\PluginBase object. | 92 |