micro/transport/transport.go

66 lines
1.2 KiB
Go
Raw Normal View History

2015-05-21 00:57:19 +03:00
package transport
2016-01-04 00:25:03 +03:00
import (
"time"
)
2015-05-21 00:57:19 +03:00
type Message struct {
Header map[string]string
Body []byte
}
type Socket interface {
2015-05-21 23:08:19 +03:00
Recv(*Message) error
Send(*Message) error
Close() error
2015-05-21 00:57:19 +03:00
}
type Client interface {
Recv(*Message) error
Send(*Message) error
2015-05-21 00:57:19 +03:00
Close() error
}
2015-05-21 23:08:19 +03:00
type Listener interface {
2015-05-21 00:57:19 +03:00
Addr() string
Close() error
2015-05-21 23:08:19 +03:00
Accept(func(Socket)) error
2015-05-21 00:57:19 +03:00
}
2016-01-31 00:19:55 +03:00
// Transport is an interface which is used for communication between
// services. It uses socket send/recv semantics and had various
// implementations {HTTP, RabbitMQ, NATS, ...}
2015-05-21 00:57:19 +03:00
type Transport interface {
Dial(addr string, opts ...DialOption) (Client, error)
2016-01-18 03:10:04 +03:00
Listen(addr string, opts ...ListenOption) (Listener, error)
2015-12-20 00:56:14 +03:00
String() string
2015-05-21 00:57:19 +03:00
}
type Option func(*Options)
type DialOption func(*DialOptions)
2016-01-18 03:10:04 +03:00
type ListenOption func(*ListenOptions)
2015-05-21 00:57:19 +03:00
var (
2016-04-06 20:03:27 +03:00
DefaultTransport Transport = newHTTPTransport()
2016-01-04 00:25:03 +03:00
DefaultDialTimeout = time.Second * 5
2015-05-21 00:57:19 +03:00
)
2016-03-16 01:25:32 +03:00
func NewTransport(opts ...Option) Transport {
2016-04-06 20:03:27 +03:00
return newHTTPTransport(opts...)
}
func Dial(addr string, opts ...DialOption) (Client, error) {
return DefaultTransport.Dial(addr, opts...)
2015-05-21 00:57:19 +03:00
}
2016-01-18 03:10:04 +03:00
func Listen(addr string, opts ...ListenOption) (Listener, error) {
return DefaultTransport.Listen(addr, opts...)
2015-05-21 00:57:19 +03:00
}
2015-12-20 00:56:14 +03:00
func String() string {
return DefaultTransport.String()
}