Updates implements Task.Updates and returns a channel of updates which is closed when Complete() is called.
()
| 59 | // Updates implements Task.Updates and returns a channel of updates which is |
| 60 | // closed when Complete() is called. |
| 61 | func (s *SimpleTask) Updates() <-chan *Update { |
| 62 | return s.ch |
| 63 | } |
| 64 | |
| 65 | // Throttled implements Task.Throttled and returns false, indicating that this |
| 66 | // task is not throttled. |
no outgoing calls