Start proxies to the underlying watcher Start implementation.
(ctx context.Context)
| 108 | |
| 109 | // Start proxies to the underlying watcher Start implementation. |
| 110 | func (w *WatcherWrapper) Start(ctx context.Context) error { |
| 111 | if w == nil || w.start == nil { |
| 112 | return nil |
| 113 | } |
| 114 | return w.start(ctx) |
| 115 | } |
| 116 | |
| 117 | // Stop proxies to the underlying watcher Stop implementation. |
| 118 | func (w *WatcherWrapper) Stop() error { |