We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
grpc:
// UnimplementedSpecialServer can be embedded to have forward compatible implementations. type UnimplementedSpecialServer struct { } func (*UnimplementedSpecialServer) GetName(context.Context, *SpecialRequest) (*SpecialReply, error) { return nil, status.Errorf(codes.Unimplemented, "method GetName not implemented") } func (*UnimplementedSpecialServer) SayHello(context.Context, *SpecialRequest) (*SpecialReply, error) { return nil, status.Errorf(codes.Unimplemented, "method SayHello not implemented") }
dubbbo-go:
type SpecialProviderBase struct { proxyImpl protocol.Invoker }
xxxProviderBase 也默认的实现下接口的方法,不然业务代码需要把接口放方法全部实现
The text was updated successfully, but these errors were encountered:
Refactor of protoc-gen-go-dubbo3grpc needs help, which is needed to be fixed at :https://github.com/dubbogo/tools/tree/master/cmd/protoc-gen-dubbo3grpc
Sorry, something went wrong.
refer to: #1460 (comment)
No branches or pull requests
grpc:
dubbbo-go:
xxxProviderBase 也默认的实现下接口的方法,不然业务代码需要把接口放方法全部实现
The text was updated successfully, but these errors were encountered: