configmap

package
v1.53.1 Latest Latest
Warning

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

Go to latest
Published: Sep 13, 2020 License: MIT Imports: 0 Imported by: 155

Documentation

Overview

Package configmap provides an abstraction for reading and writing config

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Getter

type Getter interface {
	// Get should get an item with the key passed in and return
	// the value. If the item is found then it should return true,
	// otherwise false.
	Get(key string) (value string, ok bool)
}

Getter provides an interface to get config items

type Map

type Map struct {
	// contains filtered or unexported fields
}

Map provides a wrapper around multiple Setter and Getter interfaces.

func New

func New() *Map

New returns an empty Map

func (*Map) AddGetter

func (c *Map) AddGetter(getter Getter) *Map

AddGetter appends a getter onto the end of the getters

func (*Map) AddGetters

func (c *Map) AddGetters(getters ...Getter) *Map

AddGetters appends multiple getters onto the end of the getters

func (*Map) AddSetter

func (c *Map) AddSetter(setter Setter) *Map

AddSetter appends a setter onto the end of the setters

func (*Map) Get

func (c *Map) Get(key string) (value string, ok bool)

Get gets an item with the key passed in and return the value from the first getter. If the item is found then it returns true, otherwise false.

func (*Map) Set

func (c *Map) Set(key, value string)

Set sets an item into all the stored setters.

type Mapper

type Mapper interface {
	Getter
	Setter
}

Mapper provides an interface to read and write config

type Setter

type Setter interface {
	// Set should set an item into persistent config store.
	Set(key, value string)
}

Setter provides an interface to set config items

type Simple

type Simple map[string]string

Simple is a simple Mapper for testing

func (Simple) Get

func (c Simple) Get(key string) (value string, ok bool)

Get the value

func (Simple) Set

func (c Simple) Set(key, value string)

Set the value

Jump to

Keyboard shortcuts

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