Versions in this module Expand all Collapse all v0 v0.17.3 Mar 11, 2026 v0.17.2 Mar 11, 2026 Changes in this version + type CreateOrUpdateFunc func(ctx context.Context, object T) error + type CustomHandler struct + func NewCustomHandler[T types.Object](createOrUpdate CreateOrUpdateFunc[T], delete DeleteFunc[T]) *CustomHandler[T] + func (h *CustomHandler[T]) CreateOrUpdate(ctx context.Context, object T) error + func (h *CustomHandler[T]) Delete(ctx context.Context, obj T) error + type DeleteFunc func(ctx context.Context, obj T) error + type Handler interface + CreateOrUpdate func(ctx context.Context, obj T) error + Delete func(ctx context.Context, obj T) error + type NopHandler struct + func NewNopHandler[T types.Object]() *NopHandler[T] + func (h *NopHandler[T]) CreateOrUpdate(ctx context.Context, object T) error + func (h *NopHandler[T]) Delete(ctx context.Context, obj T) error