Documentation ¶
Index ¶
- type Getter
- func NewClientGetter[T Object[T]](newObject func() T, c client.Client) Getter[T, client.ObjectKey]
- func NewPrimeLRUGetter[T ironcoreutilruntime.DeepCopier[T], K any](getLive func(ctx context.Context, key K) (T, error), ...) Getter[T, K]
- func NewTypedClientGetter[T any, TObj interface{ ... }](c client.Client) Getter[TObj, client.ObjectKey]
- type Object
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Getter ¶
type Getter[T ironcoreutilruntime.DeepCopier[T], K any] interface { Get(ctx context.Context, key K) (T, error) }
func NewClientGetter ¶
func NewPrimeLRUGetter ¶
func NewPrimeLRUGetter[T ironcoreutilruntime.DeepCopier[T], K any]( getLive func(ctx context.Context, key K) (T, error), getCached func(ctx context.Context, key K) (T, error), ) Getter[T, K]
type Object ¶
type Object[T any] interface { client.Object ironcoreutilruntime.DeepCopier[T] }
Click to show internal directories.
Click to hide internal directories.