Skip to content
Snippets Groups Projects
Commit 0bb66705 authored by Armin Costa's avatar Armin Costa
Browse files

Update Processors.md

parent 6f473be0
No related branches found
No related tags found
No related merge requests found
......@@ -219,13 +219,13 @@ Task
### Attributes ###
name = : Name of executing Task
**name** = : Name of executing Task
type = mail | class | code | cmd: Execution type
**type** = mail | class | code | cmd : Execution type
active = yes | no : Enable or disable Task
**active** = yes | no : Enable or disable Task
priority = MIN | NORM | MAX : Thread priority
**priority** = MIN | NORM | MAX : Thread priority
### Tags ###
......@@ -240,7 +240,7 @@ priority = MIN | NORM | MAX : Thread priority
**NotifyEmail** = true (OnError) | OnSuccess | OnError | OnWarning | false : To enable e-mail
**Command** = class| sh | perl | cmd: Command to be executed
**Command** = class | code | cmd (sh | perl | python | cmd ) : Command to be executed
**FileType** | ProductType (1 - n) = : regular expresison for file type filtering. If not defined task will be executed without passing a file list
......@@ -253,3 +253,46 @@ priority = MIN | NORM | MAX : Thread priority
**Parameter** (1 - n) = : Parameters to Command
**<...>** (1 - n) = : Custom Tags that can be added and are passed as hastable (only available to Commands of type class
## TaskGroup ##
TaskGroup
```xml
<TaskGroup name="taskGroup1" type="parallel" active="yes" priority="NORM">
<Task>
...
</Task>
<Task>
...
</Task>
</TaskGroup>
```
### Attributes ###
**name** = : Name of executing Task
**type** = parallel | serial : Run tasks in parallel or serial mode within this TaskGroup
**active** = yes | no : Enable or disable the TaskGroup
**priority** = MIN | NORM | MAX : Threads priority
### Tags ###
**RunOnTrigger** = : Absolute path of file that serves as trigger (has priority over StartDate/StopDate and overrides Runnable state). Trigger file will be deleted IFF ExitCode == 0 || ExitCode == 1
**StartDate** = Date Time to start the Task (YYY-MM-DDTmm:hh:ss)
**StopDate** = Date Time to stop the Task (YYY-MM-DDTmm:hh:ss)
**EMail** (1 -n ) = : Email notification recipient
**NotifyEmail** = true (OnError) | OnSuccess | OnError | OnWarning | false : To enable e-mail
**Task** (1 -n)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment