DispatchPersistedAuthUpdate pushes already-persisted file auth updates through the watcher queue. Returns true if the update was enqueued; false if no queue is configured.
(update AuthUpdate)
| 163 | // DispatchPersistedAuthUpdate pushes already-persisted file auth updates through the watcher queue. |
| 164 | // Returns true if the update was enqueued; false if no queue is configured. |
| 165 | func (w *Watcher) DispatchPersistedAuthUpdate(update AuthUpdate) bool { |
| 166 | return w.dispatchPersistedAuthUpdate(update) |
| 167 | } |
| 168 | |
| 169 | // SnapshotCoreAuths converts current clients snapshot into core auth entries. |
| 170 | func (w *Watcher) SnapshotCoreAuths() []*coreauth.Auth { |
no test coverage detected