# Functions
ContinueProcessing returns an (OperationResult, error) tuple instructing the reconcile loop to continue processing reconciler.
ReconcileHandler will invoke all the operations to be performed as part of a resource reconcile, managing the queue based on the operations' results.
Requeue returns an (OperationResult, error) tuple instructing the reconcile loop to requeue the object.
RequeueAfter returns an (OperationResult, error) tuple instructing the reconcile loop to requeue the object after the given delay.
RequeueOnErrorOrContinue returns an (OperationResult, error) tuple instructing the reconcile loop to requeue the object in case of an error or to continue processing reconciler.
RequeueOnErrorOrStop returns an (OperationResult, error) tuple instructing the reconcile loop to requeue the object in case of an error or to stop processing reconciler.
RequeueWithError returns an (OperationResult, error) tuple instructing the reconcile loop to requeue the object with the given reconcile error.
StopProcessing returns an (OperationResult, error) tuple instructing the reconcile loop to stop processing reconciler.
# Structs
OperationResult represents the result of a reconcile operation.
# Type aliases
ReconcileOperation defines the syntax of functions invoked by the ReconcileHandler.