Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type Handler ¶
type Handler struct {
// contains filtered or unexported fields
}
Handler implementation
func (*Handler) ObjectCreated ¶
func (t *Handler) ObjectCreated(obj interface{})
ObjectCreated is called when an object is created
func (*Handler) ObjectDeleted ¶
func (t *Handler) ObjectDeleted(obj interface{})
ObjectDeleted is called when an object is deleted
func (*Handler) ObjectUpdated ¶
func (t *Handler) ObjectUpdated(obj interface{})
ObjectUpdated is called when an object is updated
type HandlerInterface ¶
type HandlerInterface interface {
Init(kubernetes kubernetes.Interface, edgenet versioned.Interface) error
ObjectCreated(obj interface{})
ObjectUpdated(obj interface{})
ObjectDeleted(obj interface{})
}
HandlerInterface interface contains the methods that are required
Click to show internal directories.
Click to hide internal directories.