TaskId specifies the task to return. Notice that the caller is responsible for using the correct format, i.e. node_id:task_number, as specified in the REST API.
(taskId string)
| 76 | // for using the correct format, i.e. node_id:task_number, as specified in |
| 77 | // the REST API. |
| 78 | func (s *TasksGetTaskService) TaskId(taskId string) *TasksGetTaskService { |
| 79 | s.taskId = taskId |
| 80 | return s |
| 81 | } |
| 82 | |
| 83 | // TaskIdFromNodeAndId indicates to return the task on the given node with specified id. |
| 84 | func (s *TasksGetTaskService) TaskIdFromNodeAndId(nodeId string, id int64) *TasksGetTaskService { |
nothing calls this directly
no outgoing calls
no test coverage detected