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

34 lines
753 B

package transport
import (
"context"
// init encoding
_ "github.com/go-kratos/kratos/v2/encoding/json"
_ "github.com/go-kratos/kratos/v2/encoding/proto"
)
// Server is transport server.
type Server interface {
Endpoint() (string, error)
Start() error
Stop() error
}
// Transport is transport context value.
type Transport struct {
Kind string
}
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
}