Workflow syscall

From Catglobe Wiki
Revision as of 09:22, 14 July 2017 by Nguyenduyan (talk | contribs)
Jump to: navigation, search


Workflow_syscall

Call to a system workflow

Syntax

Workflow_syscall(systemWorkflowName[, parameters[, schedule]]);

Arguments

systemWorkflowName: string. Name of system workflow

parameters: array of parameters

schedule: Use the given schedule to run workflow. It is CatTaskSchedule object see more at CatTaskInstantSchedule, CatTaskSpecificTimeSchedule, CatTaskNeverSchedule

Return type

Returns CatTask instance id

Example

CatTaskInstantSchedule schedule  = new CatTaskInstantSchedule();
Workflow_syscall("systemWorkflowName", {para1, para2}, schedule);