micro/api/router/router.go

32 lines
860 B
Go
Raw Normal View History

2019-06-03 20:44:43 +03:00
// Package router provides api service routing
package router // import "go.unistack.org/micro/v3/api/router"
2019-06-03 20:44:43 +03:00
import (
"net/http"
"go.unistack.org/micro/v3/api"
2019-06-03 20:44:43 +03:00
)
// DefaultRouter contains default router implementation
var DefaultRouter Router
2019-06-03 20:44:43 +03:00
// Router is used to determine an endpoint for a request
type Router interface {
// Returns options
Options() Options
// Init initialize router
Init(...Option) error
2019-06-03 20:44:43 +03:00
// Stop the router
Close() error
// Endpoint returns an api.Service endpoint or an error if it does not exist
Endpoint(r *http.Request) (*api.Service, error)
// Register endpoint in router
Register(ep *api.Endpoint) error
// Deregister endpoint from router
Deregister(ep *api.Endpoint) error
2019-06-03 20:44:43 +03:00
// Route returns an api.Service route
Route(r *http.Request) (*api.Service, error)
// String representation of router
String() string
2019-06-03 20:44:43 +03:00
}