Codebase list golang-github-go-kit-kit / 78fd391 loadbalancer / publisher / publisher.go
78fd391

Tree @78fd391 (Download .tar.gz)

publisher.go @78fd391raw · history · blame

package publisher

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

// Publisher produces endpoints.
type Publisher interface {
	Subscribe(chan<- []endpoint.Endpoint)
	Unsubscribe(chan<- []endpoint.Endpoint)
	Stop()
}