stopLoop stops the loop for the current PRD immediately.
()
| 830 | |
| 831 | // stopLoop stops the loop for the current PRD immediately. |
| 832 | func (a *App) stopLoop() { |
| 833 | a.stopLoopForPRD(a.prdName) |
| 834 | } |
| 835 | |
| 836 | // stopLoopForPRD stops the loop for a specific PRD immediately. |
| 837 | func (a *App) stopLoopForPRD(prdName string) { |
nothing calls this directly
no test coverage detected