Documentation
¶
Index ¶
- func NewAppliedWorkInformer(client versioned.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredAppliedWorkInformer(client versioned.Interface, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredWorkInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewWorkInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- type AppliedWorkInformer
- type Interface
- type WorkInformer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewAppliedWorkInformer ¶
func NewAppliedWorkInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewAppliedWorkInformer constructs a new informer for AppliedWork type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
func NewFilteredAppliedWorkInformer ¶
func NewFilteredAppliedWorkInformer(client versioned.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredAppliedWorkInformer constructs a new informer for AppliedWork type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
func NewFilteredWorkInformer ¶
func NewFilteredWorkInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredWorkInformer constructs a new informer for Work type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
func NewWorkInformer ¶
func NewWorkInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewWorkInformer constructs a new informer for Work type. Always prefer using an informer factory to get a shared informer instead of getting an independent one. This reduces memory footprint and number of connections to the server.
Types ¶
type AppliedWorkInformer ¶
type AppliedWorkInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.AppliedWorkLister }
AppliedWorkInformer provides access to a shared informer and lister for AppliedWorks.
type Interface ¶
type Interface interface { // AppliedWorks returns a AppliedWorkInformer. AppliedWorks() AppliedWorkInformer // Works returns a WorkInformer. Works() WorkInformer }
Interface provides access to all the informers in this group version.
func New ¶
func New(f internalinterfaces.SharedInformerFactory, namespace string, tweakListOptions internalinterfaces.TweakListOptionsFunc) Interface
New returns a new Interface.
type WorkInformer ¶
type WorkInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.WorkLister }
WorkInformer provides access to a shared informer and lister for Works.