Documentation ¶
Index ¶
- func NewCmdInformer(client tiltapi.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
- func NewFileWatchInformer(client tiltapi.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
- func NewFilteredCmdInformer(client tiltapi.Interface, resyncPeriod time.Duration, indexers cache.Indexers, ...) cache.SharedIndexInformer
- func NewFilteredFileWatchInformer(client tiltapi.Interface, resyncPeriod time.Duration, indexers cache.Indexers, ...) cache.SharedIndexInformer
- func NewFilteredManifestInformer(client tiltapi.Interface, resyncPeriod time.Duration, indexers cache.Indexers, ...) cache.SharedIndexInformer
- func NewManifestInformer(client tiltapi.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
- type CmdInformer
- type FileWatchInformer
- type Interface
- type ManifestInformer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewCmdInformer ¶ added in v0.18.11
func NewCmdInformer(client tiltapi.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewCmdInformer constructs a new informer for Cmd 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 NewFileWatchInformer ¶
func NewFileWatchInformer(client tiltapi.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewFileWatchInformer constructs a new informer for FileWatch 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 NewFilteredCmdInformer ¶ added in v0.18.11
func NewFilteredCmdInformer(client tiltapi.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredCmdInformer constructs a new informer for Cmd 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 NewFilteredFileWatchInformer ¶
func NewFilteredFileWatchInformer(client tiltapi.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredFileWatchInformer constructs a new informer for FileWatch 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 NewFilteredManifestInformer ¶
func NewFilteredManifestInformer(client tiltapi.Interface, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredManifestInformer constructs a new informer for Manifest 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 NewManifestInformer ¶
func NewManifestInformer(client tiltapi.Interface, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewManifestInformer constructs a new informer for Manifest 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 CmdInformer ¶ added in v0.18.11
type CmdInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.CmdLister }
CmdInformer provides access to a shared informer and lister for Cmds.
type FileWatchInformer ¶
type FileWatchInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.FileWatchLister }
FileWatchInformer provides access to a shared informer and lister for FileWatches.
type Interface ¶
type Interface interface { // Cmds returns a CmdInformer. Cmds() CmdInformer // FileWatches returns a FileWatchInformer. FileWatches() FileWatchInformer // Manifests returns a ManifestInformer. Manifests() ManifestInformer }
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 ManifestInformer ¶
type ManifestInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.ManifestLister }
ManifestInformer provides access to a shared informer and lister for Manifests.