126 lines
3.9 KiB
Go
126 lines
3.9 KiB
Go
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
|
// versions:
|
|
// - protoc-gen-go-grpc v1.5.1
|
|
// - protoc (unknown)
|
|
// source: ping.proto
|
|
|
|
package mcs
|
|
|
|
import (
|
|
context "context"
|
|
grpc "google.golang.org/grpc"
|
|
codes "google.golang.org/grpc/codes"
|
|
status "google.golang.org/grpc/status"
|
|
)
|
|
|
|
// This is a compile-time assertion to ensure that this generated file
|
|
// is compatible with the grpc package it is being compiled against.
|
|
// Requires gRPC-Go v1.64.0 or later.
|
|
const _ = grpc.SupportPackageIsVersion9
|
|
|
|
const (
|
|
Api_Ping_FullMethodName = "/mcs.Api/Ping"
|
|
)
|
|
|
|
// ApiClient is the client API for Api service.
|
|
//
|
|
// For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
|
|
//
|
|
// im api service
|
|
type ApiClient interface {
|
|
Ping(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*StatusReply, error)
|
|
}
|
|
|
|
type apiClient struct {
|
|
cc grpc.ClientConnInterface
|
|
}
|
|
|
|
func NewApiClient(cc grpc.ClientConnInterface) ApiClient {
|
|
return &apiClient{cc}
|
|
}
|
|
|
|
func (c *apiClient) Ping(ctx context.Context, in *Empty, opts ...grpc.CallOption) (*StatusReply, error) {
|
|
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
|
out := new(StatusReply)
|
|
err := c.cc.Invoke(ctx, Api_Ping_FullMethodName, in, out, cOpts...)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
return out, nil
|
|
}
|
|
|
|
// ApiServer is the server API for Api service.
|
|
// All implementations must embed UnimplementedApiServer
|
|
// for forward compatibility.
|
|
//
|
|
// im api service
|
|
type ApiServer interface {
|
|
Ping(context.Context, *Empty) (*StatusReply, error)
|
|
mustEmbedUnimplementedApiServer()
|
|
}
|
|
|
|
// UnimplementedApiServer must be embedded to have
|
|
// forward compatible implementations.
|
|
//
|
|
// NOTE: this should be embedded by value instead of pointer to avoid a nil
|
|
// pointer dereference when methods are called.
|
|
type UnimplementedApiServer struct{}
|
|
|
|
func (UnimplementedApiServer) Ping(context.Context, *Empty) (*StatusReply, error) {
|
|
return nil, status.Errorf(codes.Unimplemented, "method Ping not implemented")
|
|
}
|
|
func (UnimplementedApiServer) mustEmbedUnimplementedApiServer() {}
|
|
func (UnimplementedApiServer) testEmbeddedByValue() {}
|
|
|
|
// UnsafeApiServer may be embedded to opt out of forward compatibility for this service.
|
|
// Use of this interface is not recommended, as added methods to ApiServer will
|
|
// result in compilation errors.
|
|
type UnsafeApiServer interface {
|
|
mustEmbedUnimplementedApiServer()
|
|
}
|
|
|
|
func RegisterApiServer(s grpc.ServiceRegistrar, srv ApiServer) {
|
|
// If the following call pancis, it indicates UnimplementedApiServer was
|
|
// embedded by pointer and is nil. This will cause panics if an
|
|
// unimplemented method is ever invoked, so we test this at initialization
|
|
// time to prevent it from happening at runtime later due to I/O.
|
|
if t, ok := srv.(interface{ testEmbeddedByValue() }); ok {
|
|
t.testEmbeddedByValue()
|
|
}
|
|
s.RegisterService(&Api_ServiceDesc, srv)
|
|
}
|
|
|
|
func _Api_Ping_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
|
in := new(Empty)
|
|
if err := dec(in); err != nil {
|
|
return nil, err
|
|
}
|
|
if interceptor == nil {
|
|
return srv.(ApiServer).Ping(ctx, in)
|
|
}
|
|
info := &grpc.UnaryServerInfo{
|
|
Server: srv,
|
|
FullMethod: Api_Ping_FullMethodName,
|
|
}
|
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
|
return srv.(ApiServer).Ping(ctx, req.(*Empty))
|
|
}
|
|
return interceptor(ctx, in, info, handler)
|
|
}
|
|
|
|
// Api_ServiceDesc is the grpc.ServiceDesc for Api service.
|
|
// It's only intended for direct use with grpc.RegisterService,
|
|
// and not to be introspected or modified (even as a copy)
|
|
var Api_ServiceDesc = grpc.ServiceDesc{
|
|
ServiceName: "mcs.Api",
|
|
HandlerType: (*ApiServer)(nil),
|
|
Methods: []grpc.MethodDesc{
|
|
{
|
|
MethodName: "Ping",
|
|
Handler: _Api_Ping_Handler,
|
|
},
|
|
},
|
|
Streams: []grpc.StreamDesc{},
|
|
Metadata: "ping.proto",
|
|
}
|