fte:ignoreoutcome

Ignore the outcome of a fte:filecopy, fte:filemove, or fte:call command. When you specify a fte:filecopy, fte:filemove, or fte:call task to have an outcome of defer, the Ant task allocates resources to tracking this outcome. If you are no longer interested in the outcome, you can use the fte:ignoreoutcome task to free those resources.

Attributes

id
Required. Identifies the outcome that is no longer of interest. Typically you specify this identifier using a property that you set using the idproperty attribute of the fte:filecopy, fte:filemove, or fte:call task.

Example

This example shows how you can use the fte:ignoreoutcome task to free the resources allocated to tracking the outcome of the earlier fte:filecopy task.
<!-- issue a file copy request -->
<fte:filecopy cmdqm="qm1@localhost@1414@SYSTEM.DEF.SVRCONN" 
                  src=agent1@qm1 dst="agent1@qm1"
                  idproperty="copy.id"
                  outcome="defer"/>

<!-- do some other things -->

<!-- decide that the result of the copy is not interesting -->
<fte:ignoreoutcome id="${copy.id}"/> 

Reference Reference

Feedback

Timestamp icon Last updated: Tuesday, 30 January 2018
http://www.ibm.com/support/knowledgecenter/SSEP7X_7.0.4/com.ibm.wmqfte.doc/ignore_outcome.htm