SetPluginAuthParser updates the plugin auth parser used by the watcher.
(parser PluginAuthParser)
| 141 | |
| 142 | // SetPluginAuthParser updates the plugin auth parser used by the watcher. |
| 143 | func (w *WatcherWrapper) SetPluginAuthParser(parser PluginAuthParser) { |
| 144 | if w == nil || w.setPluginAuthParser == nil { |
| 145 | return |
| 146 | } |
| 147 | w.setPluginAuthParser(parser) |
| 148 | } |
| 149 | |
| 150 | // DispatchRuntimeAuthUpdate forwards runtime auth updates (e.g., websocket providers) |
| 151 | // into the watcher-managed auth update queue when available. |
no outgoing calls
no test coverage detected