registry

package
v0.3.0 Latest Latest
Warning

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

Go to latest
Published: Mar 29, 2026 License: MIT Imports: 2 Imported by: 0

Documentation

Overview

Package registry provides a generic thread-safe key-value registry.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Registry

type Registry[T any] struct {
	// contains filtered or unexported fields
}

Registry is a generic thread-safe map from string keys to values of type T.

func New

func New[T any](kind string) *Registry[T]

New creates a Registry for the given item kind (used in error messages).

func (*Registry[T]) Lookup

func (r *Registry[T]) Lookup(name string) (T, error)

Lookup returns the item registered under name, or an error if not found.

func (*Registry[T]) Register

func (r *Registry[T]) Register(name string, item T) error

Register adds item under name. Returns an error if name is already registered.

func (*Registry[T]) Unregister

func (r *Registry[T]) Unregister(name string)

Unregister removes the item registered under name, if any.

Jump to

Keyboard shortcuts

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