agones.dev/agones@v1.54.0/pkg/client/informers/externalversions/agones/v1/gameserverset.go (about) 1 // Copyright 2024 Google LLC All Rights Reserved. 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 // This code was autogenerated. Do not edit directly. 16 17 // Code generated by informer-gen. DO NOT EDIT. 18 19 package v1 20 21 import ( 22 context "context" 23 time "time" 24 25 apisagonesv1 "agones.dev/agones/pkg/apis/agones/v1" 26 versioned "agones.dev/agones/pkg/client/clientset/versioned" 27 internalinterfaces "agones.dev/agones/pkg/client/informers/externalversions/internalinterfaces" 28 agonesv1 "agones.dev/agones/pkg/client/listers/agones/v1" 29 metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" 30 runtime "k8s.io/apimachinery/pkg/runtime" 31 watch "k8s.io/apimachinery/pkg/watch" 32 cache "k8s.io/client-go/tools/cache" 33 ) 34 35 // GameServerSetInformer provides access to a shared informer and lister for 36 // GameServerSets. 37 type GameServerSetInformer interface { 38 Informer() cache.SharedIndexInformer 39 Lister() agonesv1.GameServerSetLister 40 } 41 42 type gameServerSetInformer struct { 43 factory internalinterfaces.SharedInformerFactory 44 tweakListOptions internalinterfaces.TweakListOptionsFunc 45 namespace string 46 } 47 48 // NewGameServerSetInformer constructs a new informer for GameServerSet type. 49 // Always prefer using an informer factory to get a shared informer instead of getting an independent 50 // one. This reduces memory footprint and number of connections to the server. 51 func NewGameServerSetInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer { 52 return NewFilteredGameServerSetInformer(client, namespace, resyncPeriod, indexers, nil) 53 } 54 55 // NewFilteredGameServerSetInformer constructs a new informer for GameServerSet type. 56 // Always prefer using an informer factory to get a shared informer instead of getting an independent 57 // one. This reduces memory footprint and number of connections to the server. 58 func NewFilteredGameServerSetInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer { 59 return cache.NewSharedIndexInformer( 60 &cache.ListWatch{ 61 ListFunc: func(options metav1.ListOptions) (runtime.Object, error) { 62 if tweakListOptions != nil { 63 tweakListOptions(&options) 64 } 65 return client.AgonesV1().GameServerSets(namespace).List(context.Background(), options) 66 }, 67 WatchFunc: func(options metav1.ListOptions) (watch.Interface, error) { 68 if tweakListOptions != nil { 69 tweakListOptions(&options) 70 } 71 return client.AgonesV1().GameServerSets(namespace).Watch(context.Background(), options) 72 }, 73 ListWithContextFunc: func(ctx context.Context, options metav1.ListOptions) (runtime.Object, error) { 74 if tweakListOptions != nil { 75 tweakListOptions(&options) 76 } 77 return client.AgonesV1().GameServerSets(namespace).List(ctx, options) 78 }, 79 WatchFuncWithContext: func(ctx context.Context, options metav1.ListOptions) (watch.Interface, error) { 80 if tweakListOptions != nil { 81 tweakListOptions(&options) 82 } 83 return client.AgonesV1().GameServerSets(namespace).Watch(ctx, options) 84 }, 85 }, 86 &apisagonesv1.GameServerSet{}, 87 resyncPeriod, 88 indexers, 89 ) 90 } 91 92 func (f *gameServerSetInformer) defaultInformer(client versioned.Interface, resyncPeriod time.Duration) cache.SharedIndexInformer { 93 return NewFilteredGameServerSetInformer(client, f.namespace, resyncPeriod, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc}, f.tweakListOptions) 94 } 95 96 func (f *gameServerSetInformer) Informer() cache.SharedIndexInformer { 97 return f.factory.InformerFor(&apisagonesv1.GameServerSet{}, f.defaultInformer) 98 } 99 100 func (f *gameServerSetInformer) Lister() agonesv1.GameServerSetLister { 101 return agonesv1.NewGameServerSetLister(f.Informer().GetIndexer()) 102 }