1.4.5.2
This commit is contained in:
165
EdgeCommon/pkg/rpc/pb/service_server_bill_grpc.pb.go
Normal file
165
EdgeCommon/pkg/rpc/pb/service_server_bill_grpc.pb.go
Normal file
@@ -0,0 +1,165 @@
|
||||
// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
|
||||
// versions:
|
||||
// - protoc-gen-go-grpc v1.5.1
|
||||
// - protoc v6.33.2
|
||||
// source: service_server_bill.proto
|
||||
|
||||
package pb
|
||||
|
||||
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 (
|
||||
ServerBillService_CountAllServerBills_FullMethodName = "/pb.ServerBillService/countAllServerBills"
|
||||
ServerBillService_ListServerBills_FullMethodName = "/pb.ServerBillService/listServerBills"
|
||||
)
|
||||
|
||||
// ServerBillServiceClient is the client API for ServerBillService 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 ServerBillServiceClient interface {
|
||||
// 查询服务账单数量
|
||||
CountAllServerBills(ctx context.Context, in *CountAllServerBillsRequest, opts ...grpc.CallOption) (*RPCCountResponse, error)
|
||||
// 查询服务账单列表
|
||||
ListServerBills(ctx context.Context, in *ListServerBillsRequest, opts ...grpc.CallOption) (*ListServerBillsResponse, error)
|
||||
}
|
||||
|
||||
type serverBillServiceClient struct {
|
||||
cc grpc.ClientConnInterface
|
||||
}
|
||||
|
||||
func NewServerBillServiceClient(cc grpc.ClientConnInterface) ServerBillServiceClient {
|
||||
return &serverBillServiceClient{cc}
|
||||
}
|
||||
|
||||
func (c *serverBillServiceClient) CountAllServerBills(ctx context.Context, in *CountAllServerBillsRequest, opts ...grpc.CallOption) (*RPCCountResponse, error) {
|
||||
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
||||
out := new(RPCCountResponse)
|
||||
err := c.cc.Invoke(ctx, ServerBillService_CountAllServerBills_FullMethodName, in, out, cOpts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
func (c *serverBillServiceClient) ListServerBills(ctx context.Context, in *ListServerBillsRequest, opts ...grpc.CallOption) (*ListServerBillsResponse, error) {
|
||||
cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...)
|
||||
out := new(ListServerBillsResponse)
|
||||
err := c.cc.Invoke(ctx, ServerBillService_ListServerBills_FullMethodName, in, out, cOpts...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
return out, nil
|
||||
}
|
||||
|
||||
// ServerBillServiceServer is the server API for ServerBillService service.
|
||||
// All implementations should embed UnimplementedServerBillServiceServer
|
||||
// for forward compatibility.
|
||||
//
|
||||
// 服务账单相关服务
|
||||
type ServerBillServiceServer interface {
|
||||
// 查询服务账单数量
|
||||
CountAllServerBills(context.Context, *CountAllServerBillsRequest) (*RPCCountResponse, error)
|
||||
// 查询服务账单列表
|
||||
ListServerBills(context.Context, *ListServerBillsRequest) (*ListServerBillsResponse, error)
|
||||
}
|
||||
|
||||
// UnimplementedServerBillServiceServer should 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 UnimplementedServerBillServiceServer struct{}
|
||||
|
||||
func (UnimplementedServerBillServiceServer) CountAllServerBills(context.Context, *CountAllServerBillsRequest) (*RPCCountResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method CountAllServerBills not implemented")
|
||||
}
|
||||
func (UnimplementedServerBillServiceServer) ListServerBills(context.Context, *ListServerBillsRequest) (*ListServerBillsResponse, error) {
|
||||
return nil, status.Errorf(codes.Unimplemented, "method ListServerBills not implemented")
|
||||
}
|
||||
func (UnimplementedServerBillServiceServer) testEmbeddedByValue() {}
|
||||
|
||||
// UnsafeServerBillServiceServer may be embedded to opt out of forward compatibility for this service.
|
||||
// Use of this interface is not recommended, as added methods to ServerBillServiceServer will
|
||||
// result in compilation errors.
|
||||
type UnsafeServerBillServiceServer interface {
|
||||
mustEmbedUnimplementedServerBillServiceServer()
|
||||
}
|
||||
|
||||
func RegisterServerBillServiceServer(s grpc.ServiceRegistrar, srv ServerBillServiceServer) {
|
||||
// If the following call pancis, it indicates UnimplementedServerBillServiceServer 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(&ServerBillService_ServiceDesc, srv)
|
||||
}
|
||||
|
||||
func _ServerBillService_CountAllServerBills_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(CountAllServerBillsRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(ServerBillServiceServer).CountAllServerBills(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: ServerBillService_CountAllServerBills_FullMethodName,
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(ServerBillServiceServer).CountAllServerBills(ctx, req.(*CountAllServerBillsRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
func _ServerBillService_ListServerBills_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||||
in := new(ListServerBillsRequest)
|
||||
if err := dec(in); err != nil {
|
||||
return nil, err
|
||||
}
|
||||
if interceptor == nil {
|
||||
return srv.(ServerBillServiceServer).ListServerBills(ctx, in)
|
||||
}
|
||||
info := &grpc.UnaryServerInfo{
|
||||
Server: srv,
|
||||
FullMethod: ServerBillService_ListServerBills_FullMethodName,
|
||||
}
|
||||
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||||
return srv.(ServerBillServiceServer).ListServerBills(ctx, req.(*ListServerBillsRequest))
|
||||
}
|
||||
return interceptor(ctx, in, info, handler)
|
||||
}
|
||||
|
||||
// ServerBillService_ServiceDesc is the grpc.ServiceDesc for ServerBillService service.
|
||||
// It's only intended for direct use with grpc.RegisterService,
|
||||
// and not to be introspected or modified (even as a copy)
|
||||
var ServerBillService_ServiceDesc = grpc.ServiceDesc{
|
||||
ServiceName: "pb.ServerBillService",
|
||||
HandlerType: (*ServerBillServiceServer)(nil),
|
||||
Methods: []grpc.MethodDesc{
|
||||
{
|
||||
MethodName: "countAllServerBills",
|
||||
Handler: _ServerBillService_CountAllServerBills_Handler,
|
||||
},
|
||||
{
|
||||
MethodName: "listServerBills",
|
||||
Handler: _ServerBillService_ListServerBills_Handler,
|
||||
},
|
||||
},
|
||||
Streams: []grpc.StreamDesc{},
|
||||
Metadata: "service_server_bill.proto",
|
||||
}
|
||||
Reference in New Issue
Block a user