runFutureTask

Back to index

Summary

Run a task out of order - in a stage or gate that hasn't started yet.
flowRuntimeId
UUIDrequired
The ID of the flow runtime.
stageName
Stringrequired
The name of the stage.
taskName
Stringrequired
The name of the task.
gateType
Stringoptional
The type of the gate.
Possible values: "POST", "PRE"

Usage

Perl

$cmdr->runFutureTask( "test-flowRuntimeId", # flowRuntimeId "test-stageName", # stageName "test-taskName" # taskName # optionals );

ectool

ectool runFutureTask \ "test-flowRuntimeId" `# flowRuntimeId` \ "test-stageName" `# stageName` \ "test-taskName" `# taskName` \ # optionals

Examples

Perl

$cmdr->runFutureTask("c4721f69-7372-11e9-885c-0050568f29b0", "j-stage-2", "manualTask");

ectool

ectool runFutureTask c4721f69-7372-11e9-885c-0050568f29b0 j-stage-2 manualTask