ControlTier Inc. > CTL
 
Font size:      

Parallel-Create

Description

Creates a referrable parallel container as an alternative to using the parallel container task directly. Allows tasks or macros to be scheduled for execution in a dynamic fashion.

Parameters

AttributeDescriptionRequired
idThe name of the referrable parallel container to be createdYes
failonanytrue or false. If true, will fail immediately rather than executing all threads regardless of error Yes
threadCountNumber of parallel threads to schedule concurrentlyYes

Parameters specified as nested elements

NONE

Examples

Create a refererrable parallel container with maximum of three concurrent threads and will continue to execute if any of them fail.

	<parallel-create id="parallel-update"
		            failonany="false"
		            threadCount="3"/>