Documentation
¶
Index ¶
- func NewFilteredGraphInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredInvitationAccepterInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewFilteredMemberInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewGraphInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewInvitationAccepterInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- func NewMemberInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, ...) cache.SharedIndexInformer
- type GraphInformer
- type Interface
- type InvitationAccepterInformer
- type MemberInformer
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewFilteredGraphInformer ¶
func NewFilteredGraphInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredGraphInformer constructs a new informer for Graph 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 NewFilteredInvitationAccepterInformer ¶
func NewFilteredInvitationAccepterInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredInvitationAccepterInformer constructs a new informer for InvitationAccepter 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 NewFilteredMemberInformer ¶
func NewFilteredMemberInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer
NewFilteredMemberInformer constructs a new informer for Member 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 NewGraphInformer ¶
func NewGraphInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewGraphInformer constructs a new informer for Graph 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 NewInvitationAccepterInformer ¶
func NewInvitationAccepterInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewInvitationAccepterInformer constructs a new informer for InvitationAccepter 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 NewMemberInformer ¶
func NewMemberInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer
NewMemberInformer constructs a new informer for Member 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 GraphInformer ¶
type GraphInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.GraphLister }
GraphInformer provides access to a shared informer and lister for Graphs.
type Interface ¶
type Interface interface { // Graphs returns a GraphInformer. Graphs() GraphInformer // InvitationAccepters returns a InvitationAccepterInformer. InvitationAccepters() InvitationAccepterInformer // Members returns a MemberInformer. Members() MemberInformer }
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 InvitationAccepterInformer ¶
type InvitationAccepterInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.InvitationAccepterLister }
InvitationAccepterInformer provides access to a shared informer and lister for InvitationAccepters.
type MemberInformer ¶
type MemberInformer interface { Informer() cache.SharedIndexInformer Lister() v1alpha1.MemberLister }
MemberInformer provides access to a shared informer and lister for Members.