You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kratos/transport/transport.go

52 lines
1.1 KiB

4 years ago
package transport
import (
"context"
"net/url"
4 years ago
// init encoding
_ "github.com/go-kratos/kratos/v2/encoding/json"
_ "github.com/go-kratos/kratos/v2/encoding/proto"
_ "github.com/go-kratos/kratos/v2/encoding/xml"
_ "github.com/go-kratos/kratos/v2/encoding/yaml"
4 years ago
)
// Server is transport server.
type Server interface {
Start(context.Context) error
Stop(context.Context) error
4 years ago
}
// Endpointer is registry endpoint.
type Endpointer interface {
Endpoint() (*url.URL, error)
}
4 years ago
// Transport is transport context value.
type Transport struct {
Kind Kind
Endpoint string
4 years ago
}
// Kind defines the type of Transport
type Kind string
// Defines a set of transport kind
const (
KindGRPC Kind = "gRPC"
KindHTTP Kind = "HTTP"
)
4 years ago
type transportKey struct{}
// NewContext returns a new Context that carries value.
func NewContext(ctx context.Context, tr Transport) context.Context {
return context.WithValue(ctx, transportKey{}, tr)
}
// FromContext returns the Transport value stored in ctx, if any.
func FromContext(ctx context.Context) (tr Transport, ok bool) {
tr, ok = ctx.Value(transportKey{}).(Transport)
return
}