micro/network/transport/transport.go

64 lines
1.5 KiB
Go
Raw Normal View History

2019-07-07 15:04:07 +01:00
// Package transport is an interface for synchronous connection based communication
package transport // import "go.unistack.org/micro/v3/network/transport"
2015-05-20 22:57:19 +01:00
2016-01-03 21:25:03 +00:00
import (
"context"
2016-01-03 21:25:03 +00:00
"time"
"go.unistack.org/micro/v3/metadata"
2016-01-03 21:25:03 +00:00
)
var (
// DefaultTransport is the global default transport
DefaultTransport Transport = NewTransport()
// DefaultDialTimeout the default dial timeout
DefaultDialTimeout = time.Second * 5
)
2019-07-07 15:03:08 +01:00
// Transport is an interface which is used for communication between
// services. It uses connection based socket send/recv semantics and
// has various implementations; http, grpc, quic.
type Transport interface {
Init(...Option) error
Options() Options
Dial(ctx context.Context, addr string, opts ...DialOption) (Client, error)
Listen(ctx context.Context, addr string, opts ...ListenOption) (Listener, error)
2019-07-07 15:03:08 +01:00
String() string
}
// Message is used to transfer data
2015-05-20 22:57:19 +01:00
type Message struct {
Header metadata.Metadata
2015-05-20 22:57:19 +01:00
Body []byte
}
// Socket bastraction interface
2015-05-20 22:57:19 +01:00
type Socket interface {
2015-05-21 21:08:19 +01:00
Recv(*Message) error
Send(*Message) error
Close() error
2018-11-14 19:49:04 +00:00
Local() string
Remote() string
2015-05-20 22:57:19 +01:00
}
// Client is the socket owner
2015-05-20 22:57:19 +01:00
type Client interface {
2016-11-05 11:44:02 +00:00
Socket
2015-05-20 22:57:19 +01:00
}
// Listener is the interface for stream oriented messaging
2015-05-21 21:08:19 +01:00
type Listener interface {
2015-05-20 22:57:19 +01:00
Addr() string
Close() error
2015-05-21 21:08:19 +01:00
Accept(func(Socket)) error
2015-05-20 22:57:19 +01:00
}
// Option is the option signature
type Option func(*Options)
// DialOption is the option signature
type DialOption func(*DialOptions)
// ListenOption is the option signature
2016-01-18 00:10:04 +00:00
type ListenOption func(*ListenOptions)