public class ListDependentTasksResponse extends Object
Response from a listDependentTasks request.
See http://schemas.taskcluster.net/queue/v1/list-dependent-tasks-response.json#
| Modifier and Type | Class and Description |
|---|---|
class |
ListDependentTasksResponse.Tasks
List of tasks that have
taskId in the task.dependencies property. |
| Modifier and Type | Field and Description |
|---|---|
String |
continuationToken
Opaque
continuationToken to be given as query-string option to get the next set of dependent tasks. |
String |
taskId
Identifier for the task whose dependents are being listed.
|
ListDependentTasksResponse.Tasks[] |
tasks |
| Constructor and Description |
|---|
ListDependentTasksResponse() |
public String continuationToken
Opaque continuationToken to be given as query-string option to get the next set of dependent tasks. This property is only present if another request is necessary to fetch all results. In practice the next request with a continuationToken may not return additional results, but it can. Thus, you can only be sure to have all the results if you’ve called listDependentTasks with continuationToken until you get a result without a continuationToken.
public String taskId
Identifier for the task whose dependents are being listed.
public ListDependentTasksResponse.Tasks[] tasks
Copyright © 2014–2016 Mozilla. All rights reserved.