Watcher is any object that knows how to start a watch on a resource.
| 36 | |
| 37 | // Watcher is any object that knows how to start a watch on a resource. |
| 38 | type Watcher interface { |
| 39 | // Watch should begin a watch at the specified version. |
| 40 | Watch(options metav1.ListOptions) (watch.Interface, error) |
| 41 | } |
| 42 | |
| 43 | // ListerWatcher is any object that knows how to perform an initial list and start a watch on a resource. |
| 44 | type ListerWatcher interface { |
no outgoing calls
no test coverage detected