WaitingTask represents a task for which the total number of items to do work is on is unknown.
| 8 | // WaitingTask represents a task for which the total number of items to do work |
| 9 | // is on is unknown. |
| 10 | type WaitingTask struct { |
| 11 | // ch is used to transmit task updates. |
| 12 | ch chan *Update |
| 13 | } |
| 14 | |
| 15 | // NewWaitingTask returns a new *WaitingTask. |
| 16 | func NewWaitingTask(msg string) *WaitingTask { |
nothing calls this directly
no outgoing calls
no test coverage detected