...

Package internalinterfaces

import "github.com/openshift/client-go/config/informers/externalversions/internalinterfaces"
Overview
Index

Overview ▾

type NewInformerFunc

NewInformerFunc takes versioned.Interface and time.Duration to return a SharedIndexInformer.

type NewInformerFunc func(versioned.Interface, time.Duration) cache.SharedIndexInformer

type SharedInformerFactory

SharedInformerFactory a small interface to allow for adding an informer without an import cycle

type SharedInformerFactory interface {
    Start(stopCh <-chan struct{})
    InformerFor(obj runtime.Object, newFunc NewInformerFunc) cache.SharedIndexInformer
}

type TweakListOptionsFunc

TweakListOptionsFunc is a function that transforms a v1.ListOptions.

type TweakListOptionsFunc func(*v1.ListOptions)