You are here

function commerce_license_advanced_queue_info in Commerce License 7

Implements hook_advanced_queue_info().

File

./commerce_license.module, line 605
Provides a framework for selling access to local or remote resources.

Code

function commerce_license_advanced_queue_info() {
  return array(
    'commerce_license_expiration' => array(
      'worker callback' => 'commerce_license_expiration_queue_process',
    ),
    'commerce_license_synchronization' => array(
      'worker callback' => 'commerce_license_synchronization_queue_process',
      // @todo Make this configurable.
      'retry after' => 120,
    ),
  );
}