Codebase list golang-github-go-kit-kit / 3b9658d9-4065-4804-9af8-16961c419f60/v0.2.0 sd / subscriber.go
3b9658d9-4065-4804-9af8-16961c419f60/v0.2.0

Tree @3b9658d9-4065-4804-9af8-16961c419f60/v0.2.0 (Download .tar.gz)

subscriber.go @3b9658d9-4065-4804-9af8-16961c419f60/v0.2.0raw · history · blame

package sd

import "github.com/go-kit/kit/endpoint"

// Subscriber listens to a service discovery system and yields a set of
// identical endpoints on demand. An error indicates a problem with connectivity
// to the service discovery system, or within the system itself; a subscriber
// may yield no endpoints without error.
type Subscriber interface {
	Endpoints() ([]endpoint.Endpoint, error)
}