1234567891011121314151617181920212223 |
- package memory
- import (
- "gogs.baozhida.cn/zoie/OAuth-core/config/source"
- )
- type watcher struct {
- Id string
- Updates chan *source.ChangeSet
- Source *memory
- }
- func (w *watcher) Next() (*source.ChangeSet, error) {
- cs := <-w.Updates
- return cs, nil
- }
- func (w *watcher) Stop() error {
- w.Source.Lock()
- delete(w.Source.Watchers, w.Id)
- w.Source.Unlock()
- return nil
- }
|