public class TaskGraphDefinition1.TaskNode extends Object
| Modifier and Type | Field and Description |
|---|---|
String[] |
requires
List of required
taskIds |
int |
reruns
Number of times to rerun the task if it completed unsuccessfully.
|
TaskDefinitionRequest |
task
|
String |
taskId
Task identifier (
taskId) for the task when submitted to the queue, also used in requires below. |
| Constructor and Description |
|---|
TaskNode() |
public String[] requires
List of required taskIds
Default: []
public int reruns
Number of times to rerun the task if it completed unsuccessfully. Note, this does not capture retries due to infrastructure issues.
Default: 0 Mininum: 0 Maximum: 100
public TaskDefinitionRequest task
public String taskId
Task identifier (taskId) for the task when submitted to the queue, also used in requires below. This must be formatted as a slugid that is a uuid encoded in url-safe base64 following RFC 4648 sec. 5), but without == padding.
Syntax: ^[A-Za-z0-9_-]{8}[Q-T][A-Za-z0-9_-][CGKOSWaeimquy26-][A-Za-z0-9_-]{10}[AQgw]$
Copyright © 2014–2017 Mozilla. All rights reserved.