You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
168 lines
4.8 KiB
Go
168 lines
4.8 KiB
Go
4 years ago
|
// Code generated by protoc-gen-go.
|
||
|
// source: add.proto
|
||
|
// DO NOT EDIT!
|
||
|
|
||
|
/*
|
||
|
Package add is a generated protocol buffer package.
|
||
|
|
||
|
It is generated from these files:
|
||
|
add.proto
|
||
|
|
||
|
It has these top-level messages:
|
||
|
AddReq
|
||
|
AddResp
|
||
|
*/
|
||
|
package add
|
||
|
|
||
|
import proto "github.com/golang/protobuf/proto"
|
||
|
import fmt "fmt"
|
||
|
import math "math"
|
||
|
|
||
|
import (
|
||
|
context "golang.org/x/net/context"
|
||
|
grpc "google.golang.org/grpc"
|
||
|
)
|
||
|
|
||
|
// Reference imports to suppress errors if they are not otherwise used.
|
||
|
var _ = proto.Marshal
|
||
|
var _ = fmt.Errorf
|
||
|
var _ = math.Inf
|
||
|
|
||
|
// This is a compile-time assertion to ensure that this generated file
|
||
|
// is compatible with the proto package it is being compiled against.
|
||
|
// A compilation error at this line likely means your copy of the
|
||
|
// proto package needs to be updated.
|
||
|
const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
|
||
|
|
||
|
type AddReq struct {
|
||
|
Book string `protobuf:"bytes,1,opt,name=book" json:"book,omitempty"`
|
||
|
Price int64 `protobuf:"varint,2,opt,name=price" json:"price,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (m *AddReq) Reset() { *m = AddReq{} }
|
||
|
func (m *AddReq) String() string { return proto.CompactTextString(m) }
|
||
|
func (*AddReq) ProtoMessage() {}
|
||
|
func (*AddReq) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{0} }
|
||
|
|
||
|
func (m *AddReq) GetBook() string {
|
||
|
if m != nil {
|
||
|
return m.Book
|
||
|
}
|
||
|
return ""
|
||
|
}
|
||
|
|
||
|
func (m *AddReq) GetPrice() int64 {
|
||
|
if m != nil {
|
||
|
return m.Price
|
||
|
}
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
type AddResp struct {
|
||
|
Ok bool `protobuf:"varint,1,opt,name=ok" json:"ok,omitempty"`
|
||
|
}
|
||
|
|
||
|
func (m *AddResp) Reset() { *m = AddResp{} }
|
||
|
func (m *AddResp) String() string { return proto.CompactTextString(m) }
|
||
|
func (*AddResp) ProtoMessage() {}
|
||
|
func (*AddResp) Descriptor() ([]byte, []int) { return fileDescriptor0, []int{1} }
|
||
|
|
||
|
func (m *AddResp) GetOk() bool {
|
||
|
if m != nil {
|
||
|
return m.Ok
|
||
|
}
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
func init() {
|
||
|
proto.RegisterType((*AddReq)(nil), "add.addReq")
|
||
|
proto.RegisterType((*AddResp)(nil), "add.addResp")
|
||
|
}
|
||
|
|
||
|
// Reference imports to suppress errors if they are not otherwise used.
|
||
|
var _ context.Context
|
||
|
var _ grpc.ClientConn
|
||
|
|
||
|
// This is a compile-time assertion to ensure that this generated file
|
||
|
// is compatible with the grpc package it is being compiled against.
|
||
|
const _ = grpc.SupportPackageIsVersion4
|
||
|
|
||
|
// Client API for Adder service
|
||
|
|
||
|
type AdderClient interface {
|
||
|
Add(ctx context.Context, in *AddReq, opts ...grpc.CallOption) (*AddResp, error)
|
||
|
}
|
||
|
|
||
|
type adderClient struct {
|
||
|
cc *grpc.ClientConn
|
||
|
}
|
||
|
|
||
|
func NewAdderClient(cc *grpc.ClientConn) AdderClient {
|
||
|
return &adderClient{cc}
|
||
|
}
|
||
|
|
||
|
func (c *adderClient) Add(ctx context.Context, in *AddReq, opts ...grpc.CallOption) (*AddResp, error) {
|
||
|
out := new(AddResp)
|
||
|
err := grpc.Invoke(ctx, "/add.adder/add", in, out, c.cc, opts...)
|
||
|
if err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
return out, nil
|
||
|
}
|
||
|
|
||
|
// Server API for Adder service
|
||
|
|
||
|
type AdderServer interface {
|
||
|
Add(context.Context, *AddReq) (*AddResp, error)
|
||
|
}
|
||
|
|
||
|
func RegisterAdderServer(s *grpc.Server, srv AdderServer) {
|
||
|
s.RegisterService(&_Adder_serviceDesc, srv)
|
||
|
}
|
||
|
|
||
|
func _Adder_Add_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
|
||
|
in := new(AddReq)
|
||
|
if err := dec(in); err != nil {
|
||
|
return nil, err
|
||
|
}
|
||
|
if interceptor == nil {
|
||
|
return srv.(AdderServer).Add(ctx, in)
|
||
|
}
|
||
|
info := &grpc.UnaryServerInfo{
|
||
|
Server: srv,
|
||
|
FullMethod: "/add.adder/Add",
|
||
|
}
|
||
|
handler := func(ctx context.Context, req interface{}) (interface{}, error) {
|
||
|
return srv.(AdderServer).Add(ctx, req.(*AddReq))
|
||
|
}
|
||
|
return interceptor(ctx, in, info, handler)
|
||
|
}
|
||
|
|
||
|
var _Adder_serviceDesc = grpc.ServiceDesc{
|
||
|
ServiceName: "add.adder",
|
||
|
HandlerType: (*AdderServer)(nil),
|
||
|
Methods: []grpc.MethodDesc{
|
||
|
{
|
||
|
MethodName: "add",
|
||
|
Handler: _Adder_Add_Handler,
|
||
|
},
|
||
|
},
|
||
|
Streams: []grpc.StreamDesc{},
|
||
|
Metadata: "add.proto",
|
||
|
}
|
||
|
|
||
|
func init() { proto.RegisterFile("add.proto", fileDescriptor0) }
|
||
|
|
||
|
var fileDescriptor0 = []byte{
|
||
|
// 136 bytes of a gzipped FileDescriptorProto
|
||
|
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x09, 0x6e, 0x88, 0x02, 0xff, 0xe2, 0xe2, 0x4c, 0x4c, 0x49, 0xd1,
|
||
|
0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x62, 0x4e, 0x4c, 0x49, 0x51, 0x32, 0xe2, 0x62, 0x4b, 0x4c,
|
||
|
0x49, 0x09, 0x4a, 0x2d, 0x14, 0x12, 0xe2, 0x62, 0x49, 0xca, 0xcf, 0xcf, 0x96, 0x60, 0x54, 0x60,
|
||
|
0xd4, 0xe0, 0x0c, 0x02, 0xb3, 0x85, 0x44, 0xb8, 0x58, 0x0b, 0x8a, 0x32, 0x93, 0x53, 0x25, 0x98,
|
||
|
0x14, 0x18, 0x35, 0x98, 0x83, 0x20, 0x1c, 0x25, 0x49, 0x2e, 0x76, 0xb0, 0x9e, 0xe2, 0x02, 0x21,
|
||
|
0x3e, 0x2e, 0x26, 0xa8, 0x16, 0x8e, 0x20, 0xa6, 0xfc, 0x6c, 0x23, 0x4d, 0x2e, 0xd6, 0xc4, 0x94,
|
||
|
0x94, 0xd4, 0x22, 0x21, 0x05, 0x2e, 0x90, 0xf1, 0x42, 0xdc, 0x7a, 0x20, 0xfb, 0x20, 0x36, 0x48,
|
||
|
0xf1, 0x20, 0x38, 0xc5, 0x05, 0x49, 0x6c, 0x60, 0x57, 0x18, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff,
|
||
|
0xe2, 0x6d, 0xb5, 0x91, 0x92, 0x00, 0x00, 0x00,
|
||
|
}
|