SetAuthUpdateQueue sets the queue used to emit auth updates.
(queue chan<- AuthUpdate)
| 150 | |
| 151 | // SetAuthUpdateQueue sets the queue used to emit auth updates. |
| 152 | func (w *Watcher) SetAuthUpdateQueue(queue chan<- AuthUpdate) { |
| 153 | w.setAuthUpdateQueue(queue) |
| 154 | } |
| 155 | |
| 156 | // DispatchRuntimeAuthUpdate allows external runtime providers (e.g., websocket-driven auths) |
| 157 | // to push auth updates through the same queue used by file/config watchers. |