Setting up the contact auto sync work queue

To process each change to synchronized contacts, ClaimCenter uses a work queue named CCContactAutoSyncWorkQueue. You can configure work queues in work-queue.xml.

You can open this file in Guidewire Studio™ for ClaimCenter. In the Project window, navigate to configuration > config > workqueue, and then double-click work-queue.xml to open it in the editor.

Note: After you edit any of the configuration files described in this topic, you must rebuild and redeploy ClaimCenter for the changes to take effect.

The following code shows the default settings for this work queue:

<work-queue 
    workQueueClass="com.guidewire.cc.domain.contact.CCContactAutoSyncWorkQueue"
    progressinterval="600000">
  <worker instances="1" maxpollinterval="0"/>
</work-queue>

You can change the attributes for a work queue and add additional worker instances in work-queue.xml.

The comments at the beginning of the work-queue.xml file document the attributes for a work queue and provide some guidelines for adding worker instances.

See also