SetRetryConfig sets the retry configuration for new loops.
(config RetryConfig)
| 92 | |
| 93 | // SetRetryConfig sets the retry configuration for new loops. |
| 94 | func (m *Manager) SetRetryConfig(config RetryConfig) { |
| 95 | m.mu.Lock() |
| 96 | defer m.mu.Unlock() |
| 97 | m.retryConfig = config |
| 98 | } |
| 99 | |
| 100 | // DisableRetry disables automatic retry for new loops. |
| 101 | func (m *Manager) DisableRetry() { |
no outgoing calls