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

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

factory.go @0c243515-0bf2-4b25-8735-9c1038fa7c1b/v0.8.0raw · history · blame

package sd

import (
	"io"

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

// Factory is a function that converts an instance string (e.g. host:port) to a
// specific endpoint. Instances that provide multiple endpoints require multiple
// factories. A factory also returns an io.Closer that's invoked when the
// instance goes away and needs to be cleaned up. Factories may return nil
// closers.
//
// Users are expected to provide their own factory functions that assume
// specific transports, or can deduce transports by parsing the instance string.
type Factory func(instance string) (endpoint.Endpoint, io.Closer, error)