// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
// versions:
// - protoc-gen-go-grpc v1.5.1
// - protoc             v3.19.4
// source: ecpm_service.proto

package ecpm

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 (
	EcpmService_Ping_FullMethodName    = "/ecpm_service.ecpm_service/Ping"
	EcpmService_GetEcpm_FullMethodName = "/ecpm_service.ecpm_service/GetEcpm"
)

// EcpmServiceClient is the client API for EcpmService 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.
type EcpmServiceClient interface {
	Ping(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error)
	GetEcpm(ctx context.Context, in *GetEcpmRequest, opts ...grpc.CallOption) (*GetEcpmResponse, error)
}

type ecpmServiceClient struct {
	cc grpc.ClientConnInterface
}

func NewEcpmServiceClient(cc grpc.ClientConnInterface) EcpmServiceClient {
	return &ecpmServiceClient{cc}
}

func (c *ecpmServiceClient) Ping(ctx context.Context, in *Request, opts ...grpc.CallOption) (*Response, error) {
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
	out := new(Response)
	err := c.cc.Invoke(ctx, EcpmService_Ping_FullMethodName, in, out, cOpts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

func (c *ecpmServiceClient) GetEcpm(ctx context.Context, in *GetEcpmRequest, opts ...grpc.CallOption) (*GetEcpmResponse, error) {
	cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
	out := new(GetEcpmResponse)
	err := c.cc.Invoke(ctx, EcpmService_GetEcpm_FullMethodName, in, out, cOpts...)
	if err != nil {
		return nil, err
	}
	return out, nil
}

// EcpmServiceServer is the server API for EcpmService service.
// All implementations must embed UnimplementedEcpmServiceServer
// for forward compatibility.
type EcpmServiceServer interface {
	Ping(context.Context, *Request) (*Response, error)
	GetEcpm(context.Context, *GetEcpmRequest) (*GetEcpmResponse, error)
	mustEmbedUnimplementedEcpmServiceServer()
}

// UnimplementedEcpmServiceServer 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 UnimplementedEcpmServiceServer struct{}

func (UnimplementedEcpmServiceServer) Ping(context.Context, *Request) (*Response, error) {
	return nil, status.Errorf(codes.Unimplemented, "method Ping not implemented")
}
func (UnimplementedEcpmServiceServer) GetEcpm(context.Context, *GetEcpmRequest) (*GetEcpmResponse, error) {
	return nil, status.Errorf(codes.Unimplemented, "method GetEcpm not implemented")
}
func (UnimplementedEcpmServiceServer) mustEmbedUnimplementedEcpmServiceServer() {}
func (UnimplementedEcpmServiceServer) testEmbeddedByValue()                     {}

// UnsafeEcpmServiceServer may be embedded to opt out of forward compatibility for this service.
// Use of this interface is not recommended, as added methods to EcpmServiceServer will
// result in compilation errors.
type UnsafeEcpmServiceServer interface {
	mustEmbedUnimplementedEcpmServiceServer()
}

func RegisterEcpmServiceServer(s grpc.ServiceRegistrar, srv EcpmServiceServer) {
	// If the following call pancis, it indicates UnimplementedEcpmServiceServer 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(&EcpmService_ServiceDesc, srv)
}

func _EcpmService_Ping_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
	in := new(Request)
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(EcpmServiceServer).Ping(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: EcpmService_Ping_FullMethodName,
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
		return srv.(EcpmServiceServer).Ping(ctx, req.(*Request))
	}
	return interceptor(ctx, in, info, handler)
}

func _EcpmService_GetEcpm_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
	in := new(GetEcpmRequest)
	if err := dec(in); err != nil {
		return nil, err
	}
	if interceptor == nil {
		return srv.(EcpmServiceServer).GetEcpm(ctx, in)
	}
	info := &grpc.UnaryServerInfo{
		Server:     srv,
		FullMethod: EcpmService_GetEcpm_FullMethodName,
	}
	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
		return srv.(EcpmServiceServer).GetEcpm(ctx, req.(*GetEcpmRequest))
	}
	return interceptor(ctx, in, info, handler)
}

// EcpmService_ServiceDesc is the grpc.ServiceDesc for EcpmService service.
// It's only intended for direct use with grpc.RegisterService,
// and not to be introspected or modified (even as a copy)
var EcpmService_ServiceDesc = grpc.ServiceDesc{
	ServiceName: "ecpm_service.ecpm_service",
	HandlerType: (*EcpmServiceServer)(nil),
	Methods: []grpc.MethodDesc{
		{
			MethodName: "Ping",
			Handler:    _EcpmService_Ping_Handler,
		},
		{
			MethodName: "GetEcpm",
			Handler:    _EcpmService_GetEcpm_Handler,
		},
	},
	Streams:  []grpc.StreamDesc{},
	Metadata: "ecpm_service.proto",
}