Controller is a generic controller framework.
| 73 | |
| 74 | // Controller is a generic controller framework. |
| 75 | type controller struct { |
| 76 | config Config |
| 77 | reflector *Reflector |
| 78 | reflectorMutex sync.RWMutex |
| 79 | clock clock.Clock |
| 80 | } |
| 81 | |
| 82 | type Controller interface { |
| 83 | Run(stopCh <-chan struct{}) |
nothing calls this directly
no outgoing calls
no test coverage detected