watcher

package
v1.0.1 Latest Latest
Warning

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

Go to latest
Published: Nov 9, 2023 License: Apache-2.0, BSD-2-Clause, BSD-3-Clause, + 3 more Imports: 12 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewSimpleWatcher

func NewSimpleWatcher(
	cgu *clientgoutils.ClientGoUtils, resource string, listOptions metav1.ListOptions, stopChan <-chan struct{},
	createOrUpdateFun func(key string, object interface{}, quitChan <-chan struct{}),
	deleteFun func(key string, quitChan <-chan struct{}),
)

NewSimpleWatcher returns the chan control the informer's live cycle you can stop the informer by calling quitChan <- whatever or block the thread by this quitChan

the quitChan in createOrUpdateFunc, deleteFunc and returns is the same

Types

type Controller

type Controller struct {
	// contains filtered or unexported fields
}

func NewController

func NewController(watcher Watcher, lw cache.ListerWatcher, objType rt.Object) *Controller

func (*Controller) Run

func (c *Controller) Run(threadiness int, stopCh chan struct{})

Run begins watching and syncing.

type SimpleWatcher

type SimpleWatcher struct {
	// contains filtered or unexported fields
}

type Watcher

type Watcher interface {
	CreateOrUpdate(key string, item interface{}) error
	Delete(key string) error
	WatcherInfo() string
}

Jump to

Keyboard shortcuts

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