Documentation ¶
Index ¶
- func NewDaprControlPlaneInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewDaprCruiseControlInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewDaprInstanceInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredDaprControlPlaneInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredDaprCruiseControlInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredDaprInstanceInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- type DaprControlPlaneInformer
- type DaprCruiseControlInformer
- type DaprInstanceInformer
- type Interface
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewDaprControlPlaneInformer ¶
func NewDaprControlPlaneInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewDaprControlPlaneInformer constructs a new informer for DaprControlPlane 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 NewDaprCruiseControlInformer ¶
func NewDaprCruiseControlInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewDaprCruiseControlInformer constructs a new informer for DaprCruiseControl 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 NewDaprInstanceInformer ¶
func NewDaprInstanceInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewDaprInstanceInformer constructs a new informer for DaprInstance 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 NewFilteredDaprControlPlaneInformer ¶
func NewFilteredDaprControlPlaneInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredDaprControlPlaneInformer constructs a new informer for DaprControlPlane 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 NewFilteredDaprCruiseControlInformer ¶
func NewFilteredDaprCruiseControlInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredDaprCruiseControlInformer constructs a new informer for DaprCruiseControl 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 NewFilteredDaprInstanceInformer ¶
func NewFilteredDaprInstanceInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredDaprInstanceInformer constructs a new informer for DaprInstance 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 DaprControlPlaneInformer ¶
type DaprControlPlaneInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.DaprControlPlaneLister }
DaprControlPlaneInformer provides access to a shared informer and lister for DaprControlPlanes.
type DaprCruiseControlInformer ¶
type DaprCruiseControlInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.DaprCruiseControlLister }
DaprCruiseControlInformer provides access to a shared informer and lister for DaprCruiseControls.
type DaprInstanceInformer ¶
type DaprInstanceInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.DaprInstanceLister }
DaprInstanceInformer provides access to a shared informer and lister for DaprInstances.
type Interface ¶
type Interface interface { // DaprControlPlanes returns a DaprControlPlaneInformer. DaprControlPlanes() DaprControlPlaneInformer // DaprCruiseControls returns a DaprCruiseControlInformer. DaprCruiseControls() DaprCruiseControlInformer // DaprInstances returns a DaprInstanceInformer. DaprInstances() DaprInstanceInformer }
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.