Codebase list golang-github-go-kit-kit / 0c243515-0bf2-4b25-8735-9c1038fa7c1b/v0.2.0 sd / subscriber.go
0c243515-0bf2-4b25-8735-9c1038fa7c1b/v0.2.0

Tree @0c243515-0bf2-4b25-8735-9c1038fa7c1b/v0.2.0 (Download .tar.gz)

subscriber.go @0c243515-0bf2-4b25-8735-9c1038fa7c1b/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)
}