package routing

import "github.com/go-kit/kit/examples/shipping/routing"

Package routing provides the routing domain service. It does not actually implement the routing service but merely acts as a proxy for a separate bounded context.

Index

Types

type Service

type Service interface {
	// FetchRoutesForSpecification finds all possible routes that satisfy a
	// given specification.
	FetchRoutesForSpecification(rs cargo.RouteSpecification) []cargo.Itinerary
}

Service provides access to an external routing service.

type ServiceMiddleware

type ServiceMiddleware func(Service) Service

ServiceMiddleware defines a middleware for a routing service.

func NewProxyingMiddleware

func NewProxyingMiddleware(proxyURL string, ctx context.Context) ServiceMiddleware

NewProxyingMiddleware returns a new instance of a proxying middleware.

Source Files

proxying.go routing.go

Version
v0.2.0
Published
Jul 27, 2016
Platform
darwin/amd64
Imports
11 packages
Last checked
2 minutes ago

Tools for package owners.