ExecutionPlan Elements

From Gcube Wiki
Revision as of 14:30, 9 February 2010 by Giorgos.papanikos (Talk | contribs) (Overview)

Jump to: navigation, search

Overview

All plan elements are automatically assigned with an unique identifier through which they are retrievable and identified. Additionally, all elements can be assigned with a name that they use when emitting progress events. This way the execution monitoring can be made more user friendly.

Plan Elements

Sequence

The Sequence construct offered is a simple ordering utility for a set of execution steps. This element is a simple container maintaining the order of execution of its sub elements. When executed, the ordered list of sub elements is executed one after the other and the Sequence element is completed when its last sub-element is completed.

XML definition

<planElement id="element id" name="element name" type="Sequence">
  <list>
    <planElement .../>
    <planElement .../>
    <planElement .../>
    ...
  </list>
</planElement>

Flow

Bag

File Transfer

Conditional

Loop

Break

Wait

Try Catch Finally

Checkpoint

Processing

Boundary

Web Service

Java Object (POJO)

Shell Script