Validate reports whether the task-cancellation request is internally consistent.
(path string)
| 854 | |
| 855 | // Validate reports whether the task-cancellation request is internally consistent. |
| 856 | func (r CancelTask) Validate(path string) error { |
| 857 | return ValidatePayloadSize(r.Metadata, nestedPath(path, "metadata")) |
| 858 | } |
| 859 | |
| 860 | // Validate reports whether the dependency-create request is internally consistent. |
| 861 | func (r AddDependency) Validate(path string) error { |
no test coverage detected