TaskIdFromNodeAndId indicates to return the task on the given node with specified id.
(nodeId string, id int64)
| 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 { |
| 85 | s.taskId = fmt.Sprintf("%s:%d", nodeId, id) |
| 86 | return s |
| 87 | } |
| 88 | |
| 89 | // WaitForCompletion indicates whether to wait for the matching tasks |
| 90 | // to complete (default: false). |
nothing calls this directly
no outgoing calls
no test coverage detected