function cron_example_queue_1_worker

Simple worker for our queues.

Parameters

object $item: Any object to be worked on.

Related topics

1 string reference to 'cron_example_queue_1_worker'
cron_example_cron_queue_info in cron_example/cron_example.module
Implements hook_cron_queue_info().

File

cron_example/cron_example.module, line 221

Code

function cron_example_queue_1_worker($item) {
    cron_example_queue_report_work(1, $item);
}