You are here

function services_client_queue_sync in Services Client 7

Same name and namespace in other branches
  1. 7.2 services_client.module \services_client_queue_sync()

Sync queued data to other sites. Drupal will use this function as callback in cron run.

1 call to services_client_queue_sync()
drush_services_client_process_queue in ./services_client.drush.inc
Process queued sync jobs
1 string reference to 'services_client_queue_sync'
services_client_cron_queue_info in ./services_client.module
Implementation of hook_cron_queue_info().

File

./services_client.module, line 1100
Services client module allows to push different types of objects on different types of events such as node_save, user_save to remote masters.

Code

function services_client_queue_sync($data) {
  services_client_data_process($data['src_data'], $data['type']);
}