Documentation
      ¶
    
    
  
    
  
    Overview ¶
This is taken from https://github.com/kubernetes-sigs/controller-runtime/blob/v0.8.3/pkg/source/internal/eventsource.go. Since it's an internal package, it couldn't be imported for use with the Kind source.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type EventHandler ¶
type EventHandler struct {
	EventHandler handler.EventHandler
	Queue        workqueue.RateLimitingInterface
	Predicates   []predicate.Predicate
}
    EventHandler adapts a handler.EventHandler interface to a cache.ResourceEventHandler interface
func (EventHandler) OnAdd ¶
func (e EventHandler) OnAdd(obj interface{})
OnAdd creates CreateEvent and calls Create on EventHandler
func (EventHandler) OnDelete ¶
func (e EventHandler) OnDelete(obj interface{})
OnDelete creates DeleteEvent and calls Delete on EventHandler
func (EventHandler) OnUpdate ¶
func (e EventHandler) OnUpdate(oldObj, newObj interface{})
OnUpdate creates UpdateEvent and calls Update on EventHandler
 Click to show internal directories. 
   Click to hide internal directories.