...

Package instance

import "github.com/go-kit/kit/sd/internal/instance"
Overview
Index

Overview ▾

type Cache

Cache keeps track of resource instances provided to it via Update method and implements the Instancer interface

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

func NewCache

func NewCache() *Cache

NewCache creates a new Cache.

func (*Cache) Deregister

func (c *Cache) Deregister(ch chan<- sd.Event)

Deregister implements Instancer.

func (*Cache) Register

func (c *Cache) Register(ch chan<- sd.Event)

Register implements Instancer.

func (*Cache) State

func (c *Cache) State() sd.Event

State returns the current state of discovery (instances or error) as sd.Event

func (*Cache) Stop

func (c *Cache) Stop()

Stop implements Instancer. Since the cache is just a plain-old store of data, Stop is a no-op.

func (*Cache) Update

func (c *Cache) Update(event sd.Event)

Update receives new instances from service discovery, stores them internally, and notifies all registered listeners.