Documentation ¶
Index ¶
- func NewDownloadInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredDownloadInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredUploadInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewUploadInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- type DownloadInformer
- type Interface
- type UploadInformer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewDownloadInformer ¶
func NewDownloadInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewDownloadInformer constructs a new informer for Download 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 NewFilteredDownloadInformer ¶
func NewFilteredDownloadInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredDownloadInformer constructs a new informer for Download 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 NewFilteredUploadInformer ¶
func NewFilteredUploadInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredUploadInformer constructs a new informer for Upload 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 NewUploadInformer ¶
func NewUploadInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewUploadInformer constructs a new informer for Upload 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 DownloadInformer ¶
type DownloadInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.DownloadLister }
DownloadInformer provides access to a shared informer and lister for Downloads.
type Interface ¶
type Interface interface { // Downloads returns a DownloadInformer. Downloads() DownloadInformer // Uploads returns a UploadInformer. Uploads() UploadInformer }
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 UploadInformer ¶
type UploadInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.UploadLister }
UploadInformer provides access to a shared informer and lister for Uploads.