Slide 67
Slide 67 text
type Transport interface {
Listen(serviceName string, inbound chan<- request) error
StopListening(serviceName string) bool
Respond(req request, resp response) error
Send(req request, timeout time.Duration) (response, error)
...
}