ListWatch knows how to list and watch a set of apiserver resources. It satisfies the ListerWatcher interface. It is a convenience function for users of NewReflector, etc. ListFunc and WatchFunc must not be nil
| 56 | // It is a convenience function for users of NewReflector, etc. |
| 57 | // ListFunc and WatchFunc must not be nil |
| 58 | type ListWatch struct { |
| 59 | ListFunc ListFunc |
| 60 | WatchFunc WatchFunc |
| 61 | // DisableChunking requests no chunking for this list watcher. |
| 62 | DisableChunking bool |
| 63 | } |
| 64 | |
| 65 | // Getter interface knows how to access Get method from RESTClient. |
| 66 | type Getter interface { |
nothing calls this directly
no outgoing calls
no test coverage detected