()
| 61 | } |
| 62 | |
| 63 | func (err *BackgroundTaskError) Error() string { |
| 64 | return fmt.Sprintf("Can't create background task: %q with interval %v", err.TaskName, err.Interval) |
| 65 | } |
| 66 | |
| 67 | // BackgroundTask contains the name of the background task that is |
| 68 | // initiated and a channel that notifies background task termination. |
no outgoing calls