v1alpha1

package
v0.0.0-...-8210843 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 20, 2021 License: Apache-2.0 Imports: 10 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewAuctioneerInformer

func NewAuctioneerInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewAuctioneerInformer constructs a new informer for Auctioneer 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 NewFilteredAuctioneerInformer

func NewFilteredAuctioneerInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredAuctioneerInformer constructs a new informer for Auctioneer 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 NewFilteredOrderAuctionInformer

func NewFilteredOrderAuctionInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredOrderAuctionInformer constructs a new informer for OrderAuction 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 NewFilteredOrderReservationInformer

func NewFilteredOrderReservationInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredOrderReservationInformer constructs a new informer for OrderReservation 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 NewFilteredRobotConfigurationInformer

func NewFilteredRobotConfigurationInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredRobotConfigurationInformer constructs a new informer for RobotConfiguration 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 NewFilteredTravelTimeCalculationInformer

func NewFilteredTravelTimeCalculationInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredTravelTimeCalculationInformer constructs a new informer for TravelTimeCalculation 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 NewFilteredWarehouseOrderInformer

func NewFilteredWarehouseOrderInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers, tweakListOptions internalinterfaces.TweakListOptionsFunc) cache.SharedIndexInformer

NewFilteredWarehouseOrderInformer constructs a new informer for WarehouseOrder 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 NewOrderAuctionInformer

func NewOrderAuctionInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewOrderAuctionInformer constructs a new informer for OrderAuction 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 NewOrderReservationInformer

func NewOrderReservationInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewOrderReservationInformer constructs a new informer for OrderReservation 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 NewRobotConfigurationInformer

func NewRobotConfigurationInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewRobotConfigurationInformer constructs a new informer for RobotConfiguration 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 NewTravelTimeCalculationInformer

func NewTravelTimeCalculationInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewTravelTimeCalculationInformer constructs a new informer for TravelTimeCalculation 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 NewWarehouseOrderInformer

func NewWarehouseOrderInformer(client versioned.Interface, namespace string, resyncPeriod time.Duration, indexers cache.Indexers) cache.SharedIndexInformer

NewWarehouseOrderInformer constructs a new informer for WarehouseOrder 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 AuctioneerInformer

type AuctioneerInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.AuctioneerLister
}

AuctioneerInformer provides access to a shared informer and lister for Auctioneers.

type Interface

type Interface interface {
	// Auctioneers returns a AuctioneerInformer.
	Auctioneers() AuctioneerInformer
	// OrderAuctions returns a OrderAuctionInformer.
	OrderAuctions() OrderAuctionInformer
	// OrderReservations returns a OrderReservationInformer.
	OrderReservations() OrderReservationInformer
	// RobotConfigurations returns a RobotConfigurationInformer.
	RobotConfigurations() RobotConfigurationInformer
	// TravelTimeCalculations returns a TravelTimeCalculationInformer.
	TravelTimeCalculations() TravelTimeCalculationInformer
	// WarehouseOrders returns a WarehouseOrderInformer.
	WarehouseOrders() WarehouseOrderInformer
}

Interface provides access to all the informers in this group version.

func New

New returns a new Interface.

type OrderAuctionInformer

type OrderAuctionInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.OrderAuctionLister
}

OrderAuctionInformer provides access to a shared informer and lister for OrderAuctions.

type OrderReservationInformer

type OrderReservationInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.OrderReservationLister
}

OrderReservationInformer provides access to a shared informer and lister for OrderReservations.

type RobotConfigurationInformer

type RobotConfigurationInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.RobotConfigurationLister
}

RobotConfigurationInformer provides access to a shared informer and lister for RobotConfigurations.

type TravelTimeCalculationInformer

type TravelTimeCalculationInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.TravelTimeCalculationLister
}

TravelTimeCalculationInformer provides access to a shared informer and lister for TravelTimeCalculations.

type WarehouseOrderInformer

type WarehouseOrderInformer interface {
	Informer() cache.SharedIndexInformer
	Lister() v1alpha1.WarehouseOrderLister
}

WarehouseOrderInformer provides access to a shared informer and lister for WarehouseOrders.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL