123456789101112131415161718192021 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!--
- Licensed Materials - Property of IBM
- BI and PM: CM
- (C) Copyright IBM Corp. 2011
- US Government Users Restricted Rights - Use, duplication or disclosure
- restricted by GSA ADP Schedule Contract with IBM Corp.
- -->
- <backgroundTask name="deleteTask" taskHandler="com.cognos.cm.backgroundTask.GenericTaskHandler" taskAction="com.cognos.cm.backgroundTask.DeleteTaskAction" reportHandler="com.cognos.cm.backgroundTask.DeleteTaskReporterHandler" runType="RUN_ONCE" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="backgroundTask.xsd">
- <runOptions>
- <queueName>deleteQueue</queueName>
- <executeActionInTransaction>false</executeActionInTransaction>
- </runOptions>
- <reportHandlerOptions>
- <successThreshold>100</successThreshold>
- <failureThreshold>10</failureThreshold>
- </reportHandlerOptions>
- </backgroundTask>
|