handlers

package
v0.0.0-...-77a3198 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jun 11, 2021 License: Apache-2.0 Imports: 2 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Map = map[string]interface{}{
	"default": &Default{},
}

Map maps each event handler function to a name for easily lookup

Functions

This section is empty.

Types

type Default

type Default struct {
}

Default handler implements Handler interface, print each event with JSON format

func (*Default) Init

func (d *Default) Init() error

Init initializes handler configuration Do nothing for default handler

func (*Default) ObjectCreated

func (d *Default) ObjectCreated(obj interface{})

func (*Default) ObjectDeleted

func (d *Default) ObjectDeleted(obj interface{})

func (*Default) ObjectUpdated

func (d *Default) ObjectUpdated(oldObj, newObj interface{})

type Handler

type Handler interface {
	Init() error
	ObjectCreated(obj interface{})
	ObjectDeleted(obj interface{})
	ObjectUpdated(oldObj, newObj interface{})
}

Handler is implemented by any handler. The Handle method is used to process event

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL