stopLoopForPRD stops the loop for a specific PRD immediately.
(prdName string)
| 835 | |
| 836 | // stopLoopForPRD stops the loop for a specific PRD immediately. |
| 837 | func (a *App) stopLoopForPRD(prdName string) { |
| 838 | if a.manager != nil { |
| 839 | a.manager.Stop(prdName) |
| 840 | } |
| 841 | } |
| 842 | |
| 843 | // stopLoopAndUpdate stops the loop and updates the state. |
| 844 | func (a App) stopLoopAndUpdate() (tea.Model, tea.Cmd) { |
no test coverage detected