IsAnyRunning returns true if any loop is currently running.
()
| 535 | |
| 536 | // IsAnyRunning returns true if any loop is currently running. |
| 537 | func (m *Manager) IsAnyRunning() bool { |
| 538 | return m.GetRunningCount() > 0 |
| 539 | } |
| 540 | |
| 541 | // SetMaxIterations updates the default max iterations for new loops. |
| 542 | func (m *Manager) SetMaxIterations(maxIter int) { |