2020-01-17 18:53:33 +03:00
|
|
|
package service
|
2020-01-16 19:10:15 +03:00
|
|
|
|
|
|
|
import (
|
2020-01-30 14:39:00 +03:00
|
|
|
"github.com/micro/go-micro/v2/config/source"
|
|
|
|
proto "github.com/micro/go-micro/v2/config/source/service/proto"
|
2020-01-16 19:10:15 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type watcher struct {
|
2020-01-23 14:37:54 +03:00
|
|
|
stream proto.Config_WatchService
|
2020-01-16 19:10:15 +03:00
|
|
|
}
|
|
|
|
|
2020-01-23 14:37:54 +03:00
|
|
|
func newWatcher(stream proto.Config_WatchService) (source.Watcher, error) {
|
2020-01-16 19:10:15 +03:00
|
|
|
return &watcher{stream: stream}, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *watcher) Next() (*source.ChangeSet, error) {
|
|
|
|
var rsp proto.WatchResponse
|
|
|
|
err := w.stream.RecvMsg(&rsp)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
return toChangeSet(rsp.ChangeSet), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (w *watcher) Stop() error {
|
|
|
|
return w.stream.Close()
|
|
|
|
}
|