func GetConsumedCorrelationID(ctx context.Context) string
func NewBinding(svc Service) *serverBinding
func SetCorrelationID(ctx context.Context, v string) context.Context
type Service interface { Test(ctx context.Context, a string, b int64) (context.Context, string, error) }
func NewClient(cc *grpc.ClientConn) Service
func NewService() Service
type TestRequest struct { A string B int64 }
type TestResponse struct { Ctx context.Context V string }