RequeueAfterInterval returns the result of a reconcile invocation with a given requeue interval and no err The Object will requeue after the given requeue interval
(interval time.Duration)
| 63 | // RequeueAfterInterval returns the result of a reconcile invocation with a given requeue interval and no err |
| 64 | // The Object will requeue after the given requeue interval |
| 65 | func RequeueAfterInterval(interval time.Duration) (ctrl.Result, error) { |
| 66 | return ctrl.Result{RequeueAfter: interval}, nil |
| 67 | } |
| 68 | |
| 69 | // RequeueImmediately returns the result of a reconciler invocation and no err |
| 70 | // The Object will requeue immediately whether the err is nil or not |
no outgoing calls