ResourceUpdatedHandler contains updated objects
| 16 | |
| 17 | // ResourceUpdatedHandler contains updated objects |
| 18 | type ResourceUpdatedHandler struct { |
| 19 | Resource interface{} |
| 20 | OldResource interface{} |
| 21 | Collectors metrics.Collectors |
| 22 | Recorder record.EventRecorder |
| 23 | EnqueueTime time.Time // Time when this handler was added to the queue |
| 24 | } |
| 25 | |
| 26 | // GetEnqueueTime returns when this handler was enqueued |
| 27 | func (r ResourceUpdatedHandler) GetEnqueueTime() time.Time { |
nothing calls this directly
no outgoing calls
no test coverage detected