WithTaskIDTag sets the tag of the download task.
(tag string)
| 161 | |
| 162 | // WithTaskIDTag sets the tag of the download task. |
| 163 | func WithTaskIDTag(tag string) TaskIDOption { |
| 164 | return func(o *taskID) { |
| 165 | o.tag = tag |
| 166 | } |
| 167 | } |
| 168 | |
| 169 | // WithTaskIDApplication sets the application of the download task. |
| 170 | func WithTaskIDApplication(application string) TaskIDOption { |
no outgoing calls
no test coverage detected