// Code generated by informer-gen. DO NOT EDIT.

package v1alpha1

import (
	"context"
	time "time"

	versioned "github.com/gocrane/api/pkg/generated/clientset/versioned"
	internalinterfaces "github.com/gocrane/api/pkg/generated/informers/externalversions/internalinterfaces"
	v1alpha1 "github.com/gocrane/api/pkg/generated/listers/prediction/v1alpha1"
	predictionv1alpha1 "github.com/gocrane/api/prediction/v1alpha1"
	v1 "k8s.io/apimachinery/pkg/apis/meta/v1"
	runtime "k8s.io/apimachinery/pkg/runtime"
	watch "k8s.io/apimachinery/pkg/watch"
	cache "k8s.io/client-go/tools/cache"
)

// TimeSeriesPredictionInformer provides access to a shared informer and lister for
// TimeSeriesPredictions.
type TimeSeriesPredictionInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.TimeSeriesPredictionLister
}

type timeSeriesPredictionInformer struct {
	factory          internalinterfaces.SharedInformerFactory
	tweakListOptions internalinterfaces.TweakListOptionsFunc
	namespace        string
}

// NewTimeSeriesPredictionInformer constructs a new informer for TimeSeriesPrediction 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 NewTimeSeriesPredictionInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer {
	return NewFilteredTimeSeriesPredictionInformer(client, namespace, resyncPeriod, indexers, nil)
}

// NewFilteredTimeSeriesPredictionInformer constructs a new informer for TimeSeriesPrediction 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 NewFilteredTimeSeriesPredictionInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer {
	return cache.NewSharedIndexInformer(
		&cache.ListWatch{
			ListFunc: func(options v1.ListOptions) (runtime.Object, error) {
				if tweakListOptions != nil {
					tweakListOptions(&options)
				}
				return client.PredictionV1alpha1().TimeSeriesPredictions(namespace).List(context.TODO(), options)
			},
			WatchFunc: func(options v1.ListOptions) (watch.Interface, error) {
				if tweakListOptions != nil {
					tweakListOptions(&options)
				}
				return client.PredictionV1alpha1().TimeSeriesPredictions(namespace).Watch(context.TODO(), options)
			},
		},
		&predictionv1alpha1.TimeSeriesPrediction{},
		resyncPeriod,
		indexers,
	)
}

func (f *timeSeriesPredictionInformer) defaultInformer(client versioned.Interface, resyncPeriod time.Duration) cache.SharedIndexInformer {
	return NewFilteredTimeSeriesPredictionInformer(client, f.namespace, resyncPeriod, cache.Indexers{cache.NamespaceIndex: cache.MetaNamespaceIndexFunc}, f.tweakListOptions)
}

func (f *timeSeriesPredictionInformer) Informer() cache.SharedIndexInformer {
	return f.factory.InformerFor(&predictionv1alpha1.TimeSeriesPrediction{}, f.defaultInformer)
}

func (f *timeSeriesPredictionInformer) Lister() v1alpha1.TimeSeriesPredictionLister {
	return v1alpha1.NewTimeSeriesPredictionLister(f.Informer().GetIndexer())
}
