linkerd2/controller/api/proxy/resolver.go

9 lines
267 B
Go

package proxy
type streamingDestinationResolver interface {
canResolve(host string, port int) (bool, error)
streamResolution(host string, port int, listener endpointUpdateListener) error
streamProfiles(host string, listener profileUpdateListener) error
stop()
}