type Interface …
type EventType …
const Added …
const Modified …
const Deleted …
const Bookmark …
const Error …
var DefaultChanSize …
type Event …
type emptyWatch …
func NewEmptyWatch() Interface { … }
func (w emptyWatch) Stop() { … }
func (w emptyWatch) ResultChan() <-chan Event { … }
type FakeWatcher …
func NewFake() *FakeWatcher { … }
func NewFakeWithChanSize(size int, blocking bool) *FakeWatcher { … }
func (f *FakeWatcher) Stop() { … }
func (f *FakeWatcher) IsStopped() bool { … }
func (f *FakeWatcher) Reset() { … }
func (f *FakeWatcher) ResultChan() <-chan Event { … }
func (f *FakeWatcher) Add(obj runtime.Object) { … }
func (f *FakeWatcher) Modify(obj runtime.Object) { … }
func (f *FakeWatcher) Delete(lastValue runtime.Object) { … }
func (f *FakeWatcher) Error(errValue runtime.Object) { … }
func (f *FakeWatcher) Action(action EventType, obj runtime.Object) { … }
type RaceFreeFakeWatcher …
func NewRaceFreeFake() *RaceFreeFakeWatcher { … }
func (f *RaceFreeFakeWatcher) Stop() { … }
func (f *RaceFreeFakeWatcher) IsStopped() bool { … }
func (f *RaceFreeFakeWatcher) Reset() { … }
func (f *RaceFreeFakeWatcher) ResultChan() <-chan Event { … }
func (f *RaceFreeFakeWatcher) Add(obj runtime.Object) { … }
func (f *RaceFreeFakeWatcher) Modify(obj runtime.Object) { … }
func (f *RaceFreeFakeWatcher) Delete(lastValue runtime.Object) { … }
func (f *RaceFreeFakeWatcher) Error(errValue runtime.Object) { … }
func (f *RaceFreeFakeWatcher) Action(action EventType, obj runtime.Object) { … }
type ProxyWatcher …
var _ …
func NewProxyWatcher(ch chan Event) *ProxyWatcher { … }
func (pw *ProxyWatcher) Stop() { … }
func (pw *ProxyWatcher) Stopping() bool { … }
func (pw *ProxyWatcher) ResultChan() <-chan Event { … }
func (pw *ProxyWatcher) StopChan() <-chan struct{ … }
type MockWatcher …
var _ …
func (mw MockWatcher) Stop() { … }
func (mw MockWatcher) ResultChan() <-chan Event { … }