4 Star 5 Fork 4

Plato / Service-Box-go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
box_example.service.pb.go 53.24 KB
一键复制 编辑 原始数据 按行查看 历史
jiaoyue 提交于 2023-02-15 14:19 . update: support call_trace
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527
// Machine generated code
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.28.1
// protoc v3.10.1
// source: box_example.service.proto
package pbdata
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
reflect "reflect"
sync "sync"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
type ServiceBoxTraceInfo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
TracerId string `protobuf:"bytes,1,opt,name=tracer_id,json=tracerId,proto3" json:"tracer_id,omitempty"`
SpanId uint64 `protobuf:"varint,2,opt,name=span_id,json=spanId,proto3" json:"span_id,omitempty"`
ParentSpanId uint64 `protobuf:"varint,3,opt,name=parent_span_id,json=parentSpanId,proto3" json:"parent_span_id,omitempty"`
UserData string `protobuf:"bytes,4,opt,name=user_data,json=userData,proto3" json:"user_data,omitempty"`
}
func (x *ServiceBoxTraceInfo) Reset() {
*x = ServiceBoxTraceInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_box_example_service_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ServiceBoxTraceInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ServiceBoxTraceInfo) ProtoMessage() {}
func (x *ServiceBoxTraceInfo) ProtoReflect() protoreflect.Message {
mi := &file_box_example_service_proto_msgTypes[0]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ServiceBoxTraceInfo.ProtoReflect.Descriptor instead.
func (*ServiceBoxTraceInfo) Descriptor() ([]byte, []int) {
return file_box_example_service_proto_rawDescGZIP(), []int{0}
}
func (x *ServiceBoxTraceInfo) GetTracerId() string {
if x != nil {
return x.TracerId
}
return ""
}
func (x *ServiceBoxTraceInfo) GetSpanId() uint64 {
if x != nil {
return x.SpanId
}
return 0
}
func (x *ServiceBoxTraceInfo) GetParentSpanId() uint64 {
if x != nil {
return x.ParentSpanId
}
return 0
}
func (x *ServiceBoxTraceInfo) GetUserData() string {
if x != nil {
return x.UserData
}
return ""
}
type ExceptionInfo struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
Detail string `protobuf:"bytes,2,opt,name=detail,proto3" json:"detail,omitempty"`
}
func (x *ExceptionInfo) Reset() {
*x = ExceptionInfo{}
if protoimpl.UnsafeEnabled {
mi := &file_box_example_service_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *ExceptionInfo) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*ExceptionInfo) ProtoMessage() {}
func (x *ExceptionInfo) ProtoReflect() protoreflect.Message {
mi := &file_box_example_service_proto_msgTypes[1]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use ExceptionInfo.ProtoReflect.Descriptor instead.
func (*ExceptionInfo) Descriptor() ([]byte, []int) {
return file_box_example_service_proto_rawDescGZIP(), []int{1}
}
func (x *ExceptionInfo) GetName() string {
if x != nil {
return x.Name
}
return ""
}
func (x *ExceptionInfo) GetDetail() string {
if x != nil {
return x.Detail
}
return ""
}
type KeyValue struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Key string `protobuf:"bytes,1,opt,name=key,proto3" json:"key,omitempty"`
Value string `protobuf:"bytes,2,opt,name=value,proto3" json:"value,omitempty"`
}
func (x *KeyValue) Reset() {
*x = KeyValue{}
if protoimpl.UnsafeEnabled {
mi := &file_box_example_service_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *KeyValue) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*KeyValue) ProtoMessage() {}
func (x *KeyValue) ProtoReflect() protoreflect.Message {
mi := &file_box_example_service_proto_msgTypes[2]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use KeyValue.ProtoReflect.Descriptor instead.
func (*KeyValue) Descriptor() ([]byte, []int) {
return file_box_example_service_proto_rawDescGZIP(), []int{2}
}
func (x *KeyValue) GetKey() string {
if x != nil {
return x.Key
}
return ""
}
func (x *KeyValue) GetValue() string {
if x != nil {
return x.Value
}
return ""
}
type Context struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Info []*KeyValue `protobuf:"bytes,1,rep,name=info,proto3" json:"info,omitempty"`
}
func (x *Context) Reset() {
*x = Context{}
if protoimpl.UnsafeEnabled {
mi := &file_box_example_service_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *Context) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*Context) ProtoMessage() {}
func (x *Context) ProtoReflect() protoreflect.Message {
mi := &file_box_example_service_proto_msgTypes[3]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use Context.ProtoReflect.Descriptor instead.
func (*Context) Descriptor() ([]byte, []int) {
return file_box_example_service_proto_rawDescGZIP(), []int{3}
}
func (x *Context) GetInfo() []*KeyValue {
if x != nil {
return x.Info
}
return nil
}
type TestCaller_SetInfoArgs struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Arg1 string `protobuf:"bytes,1,opt,name=arg1,proto3" json:"arg1,omitempty"`
TraceInfo *ServiceBoxTraceInfo `protobuf:"bytes,2,opt,name=trace_info,json=traceInfo,proto3" json:"trace_info,omitempty"`
Ctx *Context `protobuf:"bytes,3,opt,name=ctx,proto3" json:"ctx,omitempty"`
}
func (x *TestCaller_SetInfoArgs) Reset() {
*x = TestCaller_SetInfoArgs{}
if protoimpl.UnsafeEnabled {
mi := &file_box_example_service_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TestCaller_SetInfoArgs) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TestCaller_SetInfoArgs) ProtoMessage() {}
func (x *TestCaller_SetInfoArgs) ProtoReflect() protoreflect.Message {
mi := &file_box_example_service_proto_msgTypes[4]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TestCaller_SetInfoArgs.ProtoReflect.Descriptor instead.
func (*TestCaller_SetInfoArgs) Descriptor() ([]byte, []int) {
return file_box_example_service_proto_rawDescGZIP(), []int{4}
}
func (x *TestCaller_SetInfoArgs) GetArg1() string {
if x != nil {
return x.Arg1
}
return ""
}
func (x *TestCaller_SetInfoArgs) GetTraceInfo() *ServiceBoxTraceInfo {
if x != nil {
return x.TraceInfo
}
return nil
}
func (x *TestCaller_SetInfoArgs) GetCtx() *Context {
if x != nil {
return x.Ctx
}
return nil
}
type TestCaller_GetInfoArgs struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
TraceInfo *ServiceBoxTraceInfo `protobuf:"bytes,1,opt,name=trace_info,json=traceInfo,proto3" json:"trace_info,omitempty"`
Ctx *Context `protobuf:"bytes,2,opt,name=ctx,proto3" json:"ctx,omitempty"`
}
func (x *TestCaller_GetInfoArgs) Reset() {
*x = TestCaller_GetInfoArgs{}
if protoimpl.UnsafeEnabled {
mi := &file_box_example_service_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TestCaller_GetInfoArgs) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TestCaller_GetInfoArgs) ProtoMessage() {}
func (x *TestCaller_GetInfoArgs) ProtoReflect() protoreflect.Message {
mi := &file_box_example_service_proto_msgTypes[5]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TestCaller_GetInfoArgs.ProtoReflect.Descriptor instead.
func (*TestCaller_GetInfoArgs) Descriptor() ([]byte, []int) {
return file_box_example_service_proto_rawDescGZIP(), []int{5}
}
func (x *TestCaller_GetInfoArgs) GetTraceInfo() *ServiceBoxTraceInfo {
if x != nil {
return x.TraceInfo
}
return nil
}
func (x *TestCaller_GetInfoArgs) GetCtx() *Context {
if x != nil {
return x.Ctx
}
return nil
}
type TestCallee_AddArgs struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Arg1 int32 `protobuf:"varint,1,opt,name=arg1,proto3" json:"arg1,omitempty"`
Arg2 int32 `protobuf:"varint,2,opt,name=arg2,proto3" json:"arg2,omitempty"`
TraceInfo *ServiceBoxTraceInfo `protobuf:"bytes,3,opt,name=trace_info,json=traceInfo,proto3" json:"trace_info,omitempty"`
Ctx *Context `protobuf:"bytes,4,opt,name=ctx,proto3" json:"ctx,omitempty"`
}
func (x *TestCallee_AddArgs) Reset() {
*x = TestCallee_AddArgs{}
if protoimpl.UnsafeEnabled {
mi := &file_box_example_service_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TestCallee_AddArgs) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TestCallee_AddArgs) ProtoMessage() {}
func (x *TestCallee_AddArgs) ProtoReflect() protoreflect.Message {
mi := &file_box_example_service_proto_msgTypes[6]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TestCallee_AddArgs.ProtoReflect.Descriptor instead.
func (*TestCallee_AddArgs) Descriptor() ([]byte, []int) {
return file_box_example_service_proto_rawDescGZIP(), []int{6}
}
func (x *TestCallee_AddArgs) GetArg1() int32 {
if x != nil {
return x.Arg1
}
return 0
}
func (x *TestCallee_AddArgs) GetArg2() int32 {
if x != nil {
return x.Arg2
}
return 0
}
func (x *TestCallee_AddArgs) GetTraceInfo() *ServiceBoxTraceInfo {
if x != nil {
return x.TraceInfo
}
return nil
}
func (x *TestCallee_AddArgs) GetCtx() *Context {
if x != nil {
return x.Ctx
}
return nil
}
type TestCallee_SubArgs struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Arg1 int32 `protobuf:"varint,1,opt,name=arg1,proto3" json:"arg1,omitempty"`
Arg2 int32 `protobuf:"varint,2,opt,name=arg2,proto3" json:"arg2,omitempty"`
TraceInfo *ServiceBoxTraceInfo `protobuf:"bytes,3,opt,name=trace_info,json=traceInfo,proto3" json:"trace_info,omitempty"`
Ctx *Context `protobuf:"bytes,4,opt,name=ctx,proto3" json:"ctx,omitempty"`
}
func (x *TestCallee_SubArgs) Reset() {
*x = TestCallee_SubArgs{}
if protoimpl.UnsafeEnabled {
mi := &file_box_example_service_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TestCallee_SubArgs) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TestCallee_SubArgs) ProtoMessage() {}
func (x *TestCallee_SubArgs) ProtoReflect() protoreflect.Message {
mi := &file_box_example_service_proto_msgTypes[7]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TestCallee_SubArgs.ProtoReflect.Descriptor instead.
func (*TestCallee_SubArgs) Descriptor() ([]byte, []int) {
return file_box_example_service_proto_rawDescGZIP(), []int{7}
}
func (x *TestCallee_SubArgs) GetArg1() int32 {
if x != nil {
return x.Arg1
}
return 0
}
func (x *TestCallee_SubArgs) GetArg2() int32 {
if x != nil {
return x.Arg2
}
return 0
}
func (x *TestCallee_SubArgs) GetTraceInfo() *ServiceBoxTraceInfo {
if x != nil {
return x.TraceInfo
}
return nil
}
func (x *TestCallee_SubArgs) GetCtx() *Context {
if x != nil {
return x.Ctx
}
return nil
}
type TestCallee_SubPrivateArgs struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Arg1 int32 `protobuf:"varint,1,opt,name=arg1,proto3" json:"arg1,omitempty"`
Arg2 int32 `protobuf:"varint,2,opt,name=arg2,proto3" json:"arg2,omitempty"`
TraceInfo *ServiceBoxTraceInfo `protobuf:"bytes,3,opt,name=trace_info,json=traceInfo,proto3" json:"trace_info,omitempty"`
Ctx *Context `protobuf:"bytes,4,opt,name=ctx,proto3" json:"ctx,omitempty"`
}
func (x *TestCallee_SubPrivateArgs) Reset() {
*x = TestCallee_SubPrivateArgs{}
if protoimpl.UnsafeEnabled {
mi := &file_box_example_service_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TestCallee_SubPrivateArgs) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TestCallee_SubPrivateArgs) ProtoMessage() {}
func (x *TestCallee_SubPrivateArgs) ProtoReflect() protoreflect.Message {
mi := &file_box_example_service_proto_msgTypes[8]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TestCallee_SubPrivateArgs.ProtoReflect.Descriptor instead.
func (*TestCallee_SubPrivateArgs) Descriptor() ([]byte, []int) {
return file_box_example_service_proto_rawDescGZIP(), []int{8}
}
func (x *TestCallee_SubPrivateArgs) GetArg1() int32 {
if x != nil {
return x.Arg1
}
return 0
}
func (x *TestCallee_SubPrivateArgs) GetArg2() int32 {
if x != nil {
return x.Arg2
}
return 0
}
func (x *TestCallee_SubPrivateArgs) GetTraceInfo() *ServiceBoxTraceInfo {
if x != nil {
return x.TraceInfo
}
return nil
}
func (x *TestCallee_SubPrivateArgs) GetCtx() *Context {
if x != nil {
return x.Ctx
}
return nil
}
type TestCallee_DivideArgs struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Arg1 int32 `protobuf:"varint,1,opt,name=arg1,proto3" json:"arg1,omitempty"`
Arg2 int32 `protobuf:"varint,2,opt,name=arg2,proto3" json:"arg2,omitempty"`
TraceInfo *ServiceBoxTraceInfo `protobuf:"bytes,3,opt,name=trace_info,json=traceInfo,proto3" json:"trace_info,omitempty"`
Ctx *Context `protobuf:"bytes,4,opt,name=ctx,proto3" json:"ctx,omitempty"`
}
func (x *TestCallee_DivideArgs) Reset() {
*x = TestCallee_DivideArgs{}
if protoimpl.UnsafeEnabled {
mi := &file_box_example_service_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TestCallee_DivideArgs) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TestCallee_DivideArgs) ProtoMessage() {}
func (x *TestCallee_DivideArgs) ProtoReflect() protoreflect.Message {
mi := &file_box_example_service_proto_msgTypes[9]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TestCallee_DivideArgs.ProtoReflect.Descriptor instead.
func (*TestCallee_DivideArgs) Descriptor() ([]byte, []int) {
return file_box_example_service_proto_rawDescGZIP(), []int{9}
}
func (x *TestCallee_DivideArgs) GetArg1() int32 {
if x != nil {
return x.Arg1
}
return 0
}
func (x *TestCallee_DivideArgs) GetArg2() int32 {
if x != nil {
return x.Arg2
}
return 0
}
func (x *TestCallee_DivideArgs) GetTraceInfo() *ServiceBoxTraceInfo {
if x != nil {
return x.TraceInfo
}
return nil
}
func (x *TestCallee_DivideArgs) GetCtx() *Context {
if x != nil {
return x.Ctx
}
return nil
}
type TestCaller_SetInfoRet struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
TraceInfo *ServiceBoxTraceInfo `protobuf:"bytes,2,opt,name=trace_info,json=traceInfo,proto3" json:"trace_info,omitempty"`
ExecInfo *ExceptionInfo `protobuf:"bytes,3,opt,name=exec_info,json=execInfo,proto3" json:"exec_info,omitempty"`
Ctx *Context `protobuf:"bytes,4,opt,name=ctx,proto3" json:"ctx,omitempty"`
}
func (x *TestCaller_SetInfoRet) Reset() {
*x = TestCaller_SetInfoRet{}
if protoimpl.UnsafeEnabled {
mi := &file_box_example_service_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TestCaller_SetInfoRet) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TestCaller_SetInfoRet) ProtoMessage() {}
func (x *TestCaller_SetInfoRet) ProtoReflect() protoreflect.Message {
mi := &file_box_example_service_proto_msgTypes[10]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TestCaller_SetInfoRet.ProtoReflect.Descriptor instead.
func (*TestCaller_SetInfoRet) Descriptor() ([]byte, []int) {
return file_box_example_service_proto_rawDescGZIP(), []int{10}
}
func (x *TestCaller_SetInfoRet) GetTraceInfo() *ServiceBoxTraceInfo {
if x != nil {
return x.TraceInfo
}
return nil
}
func (x *TestCaller_SetInfoRet) GetExecInfo() *ExceptionInfo {
if x != nil {
return x.ExecInfo
}
return nil
}
func (x *TestCaller_SetInfoRet) GetCtx() *Context {
if x != nil {
return x.Ctx
}
return nil
}
type TestCaller_GetInfoRet struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Ret1 string `protobuf:"bytes,1,opt,name=ret1,proto3" json:"ret1,omitempty"`
TraceInfo *ServiceBoxTraceInfo `protobuf:"bytes,2,opt,name=trace_info,json=traceInfo,proto3" json:"trace_info,omitempty"`
ExecInfo *ExceptionInfo `protobuf:"bytes,3,opt,name=exec_info,json=execInfo,proto3" json:"exec_info,omitempty"`
Ctx *Context `protobuf:"bytes,4,opt,name=ctx,proto3" json:"ctx,omitempty"`
}
func (x *TestCaller_GetInfoRet) Reset() {
*x = TestCaller_GetInfoRet{}
if protoimpl.UnsafeEnabled {
mi := &file_box_example_service_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TestCaller_GetInfoRet) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TestCaller_GetInfoRet) ProtoMessage() {}
func (x *TestCaller_GetInfoRet) ProtoReflect() protoreflect.Message {
mi := &file_box_example_service_proto_msgTypes[11]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TestCaller_GetInfoRet.ProtoReflect.Descriptor instead.
func (*TestCaller_GetInfoRet) Descriptor() ([]byte, []int) {
return file_box_example_service_proto_rawDescGZIP(), []int{11}
}
func (x *TestCaller_GetInfoRet) GetRet1() string {
if x != nil {
return x.Ret1
}
return ""
}
func (x *TestCaller_GetInfoRet) GetTraceInfo() *ServiceBoxTraceInfo {
if x != nil {
return x.TraceInfo
}
return nil
}
func (x *TestCaller_GetInfoRet) GetExecInfo() *ExceptionInfo {
if x != nil {
return x.ExecInfo
}
return nil
}
func (x *TestCaller_GetInfoRet) GetCtx() *Context {
if x != nil {
return x.Ctx
}
return nil
}
type TestCallee_AddRet struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Ret1 int32 `protobuf:"varint,1,opt,name=ret1,proto3" json:"ret1,omitempty"`
TraceInfo *ServiceBoxTraceInfo `protobuf:"bytes,2,opt,name=trace_info,json=traceInfo,proto3" json:"trace_info,omitempty"`
ExecInfo *ExceptionInfo `protobuf:"bytes,3,opt,name=exec_info,json=execInfo,proto3" json:"exec_info,omitempty"`
Ctx *Context `protobuf:"bytes,4,opt,name=ctx,proto3" json:"ctx,omitempty"`
}
func (x *TestCallee_AddRet) Reset() {
*x = TestCallee_AddRet{}
if protoimpl.UnsafeEnabled {
mi := &file_box_example_service_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TestCallee_AddRet) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TestCallee_AddRet) ProtoMessage() {}
func (x *TestCallee_AddRet) ProtoReflect() protoreflect.Message {
mi := &file_box_example_service_proto_msgTypes[12]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TestCallee_AddRet.ProtoReflect.Descriptor instead.
func (*TestCallee_AddRet) Descriptor() ([]byte, []int) {
return file_box_example_service_proto_rawDescGZIP(), []int{12}
}
func (x *TestCallee_AddRet) GetRet1() int32 {
if x != nil {
return x.Ret1
}
return 0
}
func (x *TestCallee_AddRet) GetTraceInfo() *ServiceBoxTraceInfo {
if x != nil {
return x.TraceInfo
}
return nil
}
func (x *TestCallee_AddRet) GetExecInfo() *ExceptionInfo {
if x != nil {
return x.ExecInfo
}
return nil
}
func (x *TestCallee_AddRet) GetCtx() *Context {
if x != nil {
return x.Ctx
}
return nil
}
type TestCallee_SubRet struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Ret1 int32 `protobuf:"varint,1,opt,name=ret1,proto3" json:"ret1,omitempty"`
TraceInfo *ServiceBoxTraceInfo `protobuf:"bytes,2,opt,name=trace_info,json=traceInfo,proto3" json:"trace_info,omitempty"`
ExecInfo *ExceptionInfo `protobuf:"bytes,3,opt,name=exec_info,json=execInfo,proto3" json:"exec_info,omitempty"`
Ctx *Context `protobuf:"bytes,4,opt,name=ctx,proto3" json:"ctx,omitempty"`
}
func (x *TestCallee_SubRet) Reset() {
*x = TestCallee_SubRet{}
if protoimpl.UnsafeEnabled {
mi := &file_box_example_service_proto_msgTypes[13]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TestCallee_SubRet) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TestCallee_SubRet) ProtoMessage() {}
func (x *TestCallee_SubRet) ProtoReflect() protoreflect.Message {
mi := &file_box_example_service_proto_msgTypes[13]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TestCallee_SubRet.ProtoReflect.Descriptor instead.
func (*TestCallee_SubRet) Descriptor() ([]byte, []int) {
return file_box_example_service_proto_rawDescGZIP(), []int{13}
}
func (x *TestCallee_SubRet) GetRet1() int32 {
if x != nil {
return x.Ret1
}
return 0
}
func (x *TestCallee_SubRet) GetTraceInfo() *ServiceBoxTraceInfo {
if x != nil {
return x.TraceInfo
}
return nil
}
func (x *TestCallee_SubRet) GetExecInfo() *ExceptionInfo {
if x != nil {
return x.ExecInfo
}
return nil
}
func (x *TestCallee_SubRet) GetCtx() *Context {
if x != nil {
return x.Ctx
}
return nil
}
type TestCallee_SubPrivateRet struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Ret1 int32 `protobuf:"varint,1,opt,name=ret1,proto3" json:"ret1,omitempty"`
TraceInfo *ServiceBoxTraceInfo `protobuf:"bytes,2,opt,name=trace_info,json=traceInfo,proto3" json:"trace_info,omitempty"`
ExecInfo *ExceptionInfo `protobuf:"bytes,3,opt,name=exec_info,json=execInfo,proto3" json:"exec_info,omitempty"`
Ctx *Context `protobuf:"bytes,4,opt,name=ctx,proto3" json:"ctx,omitempty"`
}
func (x *TestCallee_SubPrivateRet) Reset() {
*x = TestCallee_SubPrivateRet{}
if protoimpl.UnsafeEnabled {
mi := &file_box_example_service_proto_msgTypes[14]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TestCallee_SubPrivateRet) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TestCallee_SubPrivateRet) ProtoMessage() {}
func (x *TestCallee_SubPrivateRet) ProtoReflect() protoreflect.Message {
mi := &file_box_example_service_proto_msgTypes[14]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TestCallee_SubPrivateRet.ProtoReflect.Descriptor instead.
func (*TestCallee_SubPrivateRet) Descriptor() ([]byte, []int) {
return file_box_example_service_proto_rawDescGZIP(), []int{14}
}
func (x *TestCallee_SubPrivateRet) GetRet1() int32 {
if x != nil {
return x.Ret1
}
return 0
}
func (x *TestCallee_SubPrivateRet) GetTraceInfo() *ServiceBoxTraceInfo {
if x != nil {
return x.TraceInfo
}
return nil
}
func (x *TestCallee_SubPrivateRet) GetExecInfo() *ExceptionInfo {
if x != nil {
return x.ExecInfo
}
return nil
}
func (x *TestCallee_SubPrivateRet) GetCtx() *Context {
if x != nil {
return x.Ctx
}
return nil
}
type TestCallee_DivideRet struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Ret1 int32 `protobuf:"varint,1,opt,name=ret1,proto3" json:"ret1,omitempty"`
TraceInfo *ServiceBoxTraceInfo `protobuf:"bytes,2,opt,name=trace_info,json=traceInfo,proto3" json:"trace_info,omitempty"`
ExecInfo *ExceptionInfo `protobuf:"bytes,3,opt,name=exec_info,json=execInfo,proto3" json:"exec_info,omitempty"`
Ctx *Context `protobuf:"bytes,4,opt,name=ctx,proto3" json:"ctx,omitempty"`
}
func (x *TestCallee_DivideRet) Reset() {
*x = TestCallee_DivideRet{}
if protoimpl.UnsafeEnabled {
mi := &file_box_example_service_proto_msgTypes[15]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *TestCallee_DivideRet) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*TestCallee_DivideRet) ProtoMessage() {}
func (x *TestCallee_DivideRet) ProtoReflect() protoreflect.Message {
mi := &file_box_example_service_proto_msgTypes[15]
if protoimpl.UnsafeEnabled && x != nil {
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
if ms.LoadMessageInfo() == nil {
ms.StoreMessageInfo(mi)
}
return ms
}
return mi.MessageOf(x)
}
// Deprecated: Use TestCallee_DivideRet.ProtoReflect.Descriptor instead.
func (*TestCallee_DivideRet) Descriptor() ([]byte, []int) {
return file_box_example_service_proto_rawDescGZIP(), []int{15}
}
func (x *TestCallee_DivideRet) GetRet1() int32 {
if x != nil {
return x.Ret1
}
return 0
}
func (x *TestCallee_DivideRet) GetTraceInfo() *ServiceBoxTraceInfo {
if x != nil {
return x.TraceInfo
}
return nil
}
func (x *TestCallee_DivideRet) GetExecInfo() *ExceptionInfo {
if x != nil {
return x.ExecInfo
}
return nil
}
func (x *TestCallee_DivideRet) GetCtx() *Context {
if x != nil {
return x.Ctx
}
return nil
}
var File_box_example_service_proto protoreflect.FileDescriptor
var file_box_example_service_proto_rawDesc = []byte{
0x0a, 0x19, 0x62, 0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x73, 0x65,
0x72, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x0b, 0x62, 0x6f, 0x78,
0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x22, 0x8e, 0x01, 0x0a, 0x13, 0x53, 0x65, 0x72,
0x76, 0x69, 0x63, 0x65, 0x42, 0x6f, 0x78, 0x54, 0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x1b, 0x0a, 0x09, 0x74, 0x72, 0x61, 0x63, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20,
0x01, 0x28, 0x09, 0x52, 0x08, 0x74, 0x72, 0x61, 0x63, 0x65, 0x72, 0x49, 0x64, 0x12, 0x17, 0x0a,
0x07, 0x73, 0x70, 0x61, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x04, 0x52, 0x06,
0x73, 0x70, 0x61, 0x6e, 0x49, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74,
0x5f, 0x73, 0x70, 0x61, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x04, 0x52, 0x0c,
0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x53, 0x70, 0x61, 0x6e, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09,
0x75, 0x73, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
0x08, 0x75, 0x73, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x22, 0x3b, 0x0a, 0x0d, 0x45, 0x78, 0x63,
0x65, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61,
0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x16,
0x0a, 0x06, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x22, 0x32, 0x0a, 0x08, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c,
0x75, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
0x03, 0x6b, 0x65, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20,
0x01, 0x28, 0x09, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x22, 0x34, 0x0a, 0x07, 0x43, 0x6f,
0x6e, 0x74, 0x65, 0x78, 0x74, 0x12, 0x29, 0x0a, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20,
0x03, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x62, 0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c,
0x65, 0x2e, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x04, 0x69, 0x6e, 0x66, 0x6f,
0x22, 0x96, 0x01, 0x0a, 0x17, 0x54, 0x65, 0x73, 0x74, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f,
0x53, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x5f, 0x61, 0x72, 0x67, 0x73, 0x12, 0x12, 0x0a, 0x04,
0x61, 0x72, 0x67, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x67, 0x31,
0x12, 0x3f, 0x0a, 0x0a, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02,
0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x62, 0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70,
0x6c, 0x65, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x42, 0x6f, 0x78, 0x54, 0x72, 0x61,
0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66,
0x6f, 0x12, 0x26, 0x0a, 0x03, 0x63, 0x74, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14,
0x2e, 0x62, 0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e,
0x74, 0x65, 0x78, 0x74, 0x52, 0x03, 0x63, 0x74, 0x78, 0x22, 0x82, 0x01, 0x0a, 0x17, 0x54, 0x65,
0x73, 0x74, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f,
0x5f, 0x61, 0x72, 0x67, 0x73, 0x12, 0x3f, 0x0a, 0x0a, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69,
0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x62, 0x6f, 0x78, 0x5f,
0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x42,
0x6f, 0x78, 0x54, 0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x74, 0x72, 0x61,
0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x26, 0x0a, 0x03, 0x63, 0x74, 0x78, 0x18, 0x02, 0x20,
0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x62, 0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c,
0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x52, 0x03, 0x63, 0x74, 0x78, 0x22, 0xa6,
0x01, 0x0a, 0x13, 0x54, 0x65, 0x73, 0x74, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x65, 0x5f, 0x41, 0x64,
0x64, 0x5f, 0x61, 0x72, 0x67, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x67, 0x31, 0x18, 0x01,
0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x61, 0x72, 0x67, 0x31, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72,
0x67, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x61, 0x72, 0x67, 0x32, 0x12, 0x3f,
0x0a, 0x0a, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, 0x01,
0x28, 0x0b, 0x32, 0x20, 0x2e, 0x62, 0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65,
0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x42, 0x6f, 0x78, 0x54, 0x72, 0x61, 0x63, 0x65,
0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12,
0x26, 0x0a, 0x03, 0x63, 0x74, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x62,
0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65,
0x78, 0x74, 0x52, 0x03, 0x63, 0x74, 0x78, 0x22, 0xa6, 0x01, 0x0a, 0x13, 0x54, 0x65, 0x73, 0x74,
0x43, 0x61, 0x6c, 0x6c, 0x65, 0x65, 0x5f, 0x53, 0x75, 0x62, 0x5f, 0x61, 0x72, 0x67, 0x73, 0x12,
0x12, 0x0a, 0x04, 0x61, 0x72, 0x67, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x61,
0x72, 0x67, 0x31, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x67, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28,
0x05, 0x52, 0x04, 0x61, 0x72, 0x67, 0x32, 0x12, 0x3f, 0x0a, 0x0a, 0x74, 0x72, 0x61, 0x63, 0x65,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x62, 0x6f,
0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,
0x65, 0x42, 0x6f, 0x78, 0x54, 0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x74,
0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x26, 0x0a, 0x03, 0x63, 0x74, 0x78, 0x18,
0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x62, 0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d,
0x70, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x52, 0x03, 0x63, 0x74, 0x78,
0x22, 0xad, 0x01, 0x0a, 0x1a, 0x54, 0x65, 0x73, 0x74, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x65, 0x5f,
0x53, 0x75, 0x62, 0x50, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x72, 0x67, 0x73, 0x12,
0x12, 0x0a, 0x04, 0x61, 0x72, 0x67, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x61,
0x72, 0x67, 0x31, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72, 0x67, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28,
0x05, 0x52, 0x04, 0x61, 0x72, 0x67, 0x32, 0x12, 0x3f, 0x0a, 0x0a, 0x74, 0x72, 0x61, 0x63, 0x65,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x62, 0x6f,
0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,
0x65, 0x42, 0x6f, 0x78, 0x54, 0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x74,
0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x26, 0x0a, 0x03, 0x63, 0x74, 0x78, 0x18,
0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x62, 0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d,
0x70, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x52, 0x03, 0x63, 0x74, 0x78,
0x22, 0xa9, 0x01, 0x0a, 0x16, 0x54, 0x65, 0x73, 0x74, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x65, 0x5f,
0x44, 0x69, 0x76, 0x69, 0x64, 0x65, 0x5f, 0x61, 0x72, 0x67, 0x73, 0x12, 0x12, 0x0a, 0x04, 0x61,
0x72, 0x67, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x61, 0x72, 0x67, 0x31, 0x12,
0x12, 0x0a, 0x04, 0x61, 0x72, 0x67, 0x32, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x61,
0x72, 0x67, 0x32, 0x12, 0x3f, 0x0a, 0x0a, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x66,
0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x62, 0x6f, 0x78, 0x5f, 0x65, 0x78,
0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x42, 0x6f, 0x78,
0x54, 0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x74, 0x72, 0x61, 0x63, 0x65,
0x49, 0x6e, 0x66, 0x6f, 0x12, 0x26, 0x0a, 0x03, 0x63, 0x74, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28,
0x0b, 0x32, 0x14, 0x2e, 0x62, 0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e,
0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x52, 0x03, 0x63, 0x74, 0x78, 0x22, 0xba, 0x01, 0x0a,
0x16, 0x54, 0x65, 0x73, 0x74, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x53, 0x65, 0x74, 0x49,
0x6e, 0x66, 0x6f, 0x5f, 0x72, 0x65, 0x74, 0x12, 0x3f, 0x0a, 0x0a, 0x74, 0x72, 0x61, 0x63, 0x65,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x62, 0x6f,
0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63,
0x65, 0x42, 0x6f, 0x78, 0x54, 0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x74,
0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x37, 0x0a, 0x09, 0x65, 0x78, 0x65, 0x63,
0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x6f,
0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x45, 0x78, 0x63, 0x65, 0x70, 0x74,
0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x65, 0x78, 0x65, 0x63, 0x49, 0x6e, 0x66,
0x6f, 0x12, 0x26, 0x0a, 0x03, 0x63, 0x74, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14,
0x2e, 0x62, 0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e,
0x74, 0x65, 0x78, 0x74, 0x52, 0x03, 0x63, 0x74, 0x78, 0x22, 0xce, 0x01, 0x0a, 0x16, 0x54, 0x65,
0x73, 0x74, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x72, 0x5f, 0x47, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f,
0x5f, 0x72, 0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x65, 0x74, 0x31, 0x18, 0x01, 0x20, 0x01,
0x28, 0x09, 0x52, 0x04, 0x72, 0x65, 0x74, 0x31, 0x12, 0x3f, 0x0a, 0x0a, 0x74, 0x72, 0x61, 0x63,
0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x62,
0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69,
0x63, 0x65, 0x42, 0x6f, 0x78, 0x54, 0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09,
0x74, 0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x37, 0x0a, 0x09, 0x65, 0x78, 0x65,
0x63, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62,
0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x45, 0x78, 0x63, 0x65, 0x70,
0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x65, 0x78, 0x65, 0x63, 0x49, 0x6e,
0x66, 0x6f, 0x12, 0x26, 0x0a, 0x03, 0x63, 0x74, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32,
0x14, 0x2e, 0x62, 0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x43, 0x6f,
0x6e, 0x74, 0x65, 0x78, 0x74, 0x52, 0x03, 0x63, 0x74, 0x78, 0x22, 0xca, 0x01, 0x0a, 0x12, 0x54,
0x65, 0x73, 0x74, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x65, 0x5f, 0x41, 0x64, 0x64, 0x5f, 0x72, 0x65,
0x74, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x65, 0x74, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52,
0x04, 0x72, 0x65, 0x74, 0x31, 0x12, 0x3f, 0x0a, 0x0a, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69,
0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x62, 0x6f, 0x78, 0x5f,
0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x42,
0x6f, 0x78, 0x54, 0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x74, 0x72, 0x61,
0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x37, 0x0a, 0x09, 0x65, 0x78, 0x65, 0x63, 0x5f, 0x69,
0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x6f, 0x78, 0x5f,
0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x45, 0x78, 0x63, 0x65, 0x70, 0x74, 0x69, 0x6f,
0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x65, 0x78, 0x65, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x12,
0x26, 0x0a, 0x03, 0x63, 0x74, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x62,
0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65,
0x78, 0x74, 0x52, 0x03, 0x63, 0x74, 0x78, 0x22, 0xca, 0x01, 0x0a, 0x12, 0x54, 0x65, 0x73, 0x74,
0x43, 0x61, 0x6c, 0x6c, 0x65, 0x65, 0x5f, 0x53, 0x75, 0x62, 0x5f, 0x72, 0x65, 0x74, 0x12, 0x12,
0x0a, 0x04, 0x72, 0x65, 0x74, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x72, 0x65,
0x74, 0x31, 0x12, 0x3f, 0x0a, 0x0a, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x62, 0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61,
0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x42, 0x6f, 0x78, 0x54,
0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x74, 0x72, 0x61, 0x63, 0x65, 0x49,
0x6e, 0x66, 0x6f, 0x12, 0x37, 0x0a, 0x09, 0x65, 0x78, 0x65, 0x63, 0x5f, 0x69, 0x6e, 0x66, 0x6f,
0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61,
0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x45, 0x78, 0x63, 0x65, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e,
0x66, 0x6f, 0x52, 0x08, 0x65, 0x78, 0x65, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x26, 0x0a, 0x03,
0x63, 0x74, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x62, 0x6f, 0x78, 0x5f,
0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x52,
0x03, 0x63, 0x74, 0x78, 0x22, 0xd1, 0x01, 0x0a, 0x19, 0x54, 0x65, 0x73, 0x74, 0x43, 0x61, 0x6c,
0x6c, 0x65, 0x65, 0x5f, 0x53, 0x75, 0x62, 0x50, 0x72, 0x69, 0x76, 0x61, 0x74, 0x65, 0x5f, 0x72,
0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x65, 0x74, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
0x52, 0x04, 0x72, 0x65, 0x74, 0x31, 0x12, 0x3f, 0x0a, 0x0a, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f,
0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x62, 0x6f, 0x78,
0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
0x42, 0x6f, 0x78, 0x54, 0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x74, 0x72,
0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x37, 0x0a, 0x09, 0x65, 0x78, 0x65, 0x63, 0x5f,
0x69, 0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x6f, 0x78,
0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x45, 0x78, 0x63, 0x65, 0x70, 0x74, 0x69,
0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x65, 0x78, 0x65, 0x63, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x26, 0x0a, 0x03, 0x63, 0x74, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e,
0x62, 0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74,
0x65, 0x78, 0x74, 0x52, 0x03, 0x63, 0x74, 0x78, 0x22, 0xcd, 0x01, 0x0a, 0x15, 0x54, 0x65, 0x73,
0x74, 0x43, 0x61, 0x6c, 0x6c, 0x65, 0x65, 0x5f, 0x44, 0x69, 0x76, 0x69, 0x64, 0x65, 0x5f, 0x72,
0x65, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x72, 0x65, 0x74, 0x31, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
0x52, 0x04, 0x72, 0x65, 0x74, 0x31, 0x12, 0x3f, 0x0a, 0x0a, 0x74, 0x72, 0x61, 0x63, 0x65, 0x5f,
0x69, 0x6e, 0x66, 0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x20, 0x2e, 0x62, 0x6f, 0x78,
0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65,
0x42, 0x6f, 0x78, 0x54, 0x72, 0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, 0x74, 0x72,
0x61, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x37, 0x0a, 0x09, 0x65, 0x78, 0x65, 0x63, 0x5f,
0x69, 0x6e, 0x66, 0x6f, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x6f, 0x78,
0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x45, 0x78, 0x63, 0x65, 0x70, 0x74, 0x69,
0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x65, 0x78, 0x65, 0x63, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x26, 0x0a, 0x03, 0x63, 0x74, 0x78, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e,
0x62, 0x6f, 0x78, 0x5f, 0x65, 0x78, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x2e, 0x43, 0x6f, 0x6e, 0x74,
0x65, 0x78, 0x74, 0x52, 0x03, 0x63, 0x74, 0x78, 0x42, 0x10, 0x5a, 0x0e, 0x69, 0x64, 0x6c, 0x64,
0x61, 0x74, 0x61, 0x2f, 0x70, 0x62, 0x64, 0x61, 0x74, 0x61, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
0x6f, 0x33,
}
var (
file_box_example_service_proto_rawDescOnce sync.Once
file_box_example_service_proto_rawDescData = file_box_example_service_proto_rawDesc
)
func file_box_example_service_proto_rawDescGZIP() []byte {
file_box_example_service_proto_rawDescOnce.Do(func() {
file_box_example_service_proto_rawDescData = protoimpl.X.CompressGZIP(file_box_example_service_proto_rawDescData)
})
return file_box_example_service_proto_rawDescData
}
var file_box_example_service_proto_msgTypes = make([]protoimpl.MessageInfo, 16)
var file_box_example_service_proto_goTypes = []interface{}{
(*ServiceBoxTraceInfo)(nil), // 0: box_example.ServiceBoxTraceInfo
(*ExceptionInfo)(nil), // 1: box_example.ExceptionInfo
(*KeyValue)(nil), // 2: box_example.KeyValue
(*Context)(nil), // 3: box_example.Context
(*TestCaller_SetInfoArgs)(nil), // 4: box_example.TestCaller_SetInfo_args
(*TestCaller_GetInfoArgs)(nil), // 5: box_example.TestCaller_GetInfo_args
(*TestCallee_AddArgs)(nil), // 6: box_example.TestCallee_Add_args
(*TestCallee_SubArgs)(nil), // 7: box_example.TestCallee_Sub_args
(*TestCallee_SubPrivateArgs)(nil), // 8: box_example.TestCallee_SubPrivate_args
(*TestCallee_DivideArgs)(nil), // 9: box_example.TestCallee_Divide_args
(*TestCaller_SetInfoRet)(nil), // 10: box_example.TestCaller_SetInfo_ret
(*TestCaller_GetInfoRet)(nil), // 11: box_example.TestCaller_GetInfo_ret
(*TestCallee_AddRet)(nil), // 12: box_example.TestCallee_Add_ret
(*TestCallee_SubRet)(nil), // 13: box_example.TestCallee_Sub_ret
(*TestCallee_SubPrivateRet)(nil), // 14: box_example.TestCallee_SubPrivate_ret
(*TestCallee_DivideRet)(nil), // 15: box_example.TestCallee_Divide_ret
}
var file_box_example_service_proto_depIdxs = []int32{
2, // 0: box_example.Context.info:type_name -> box_example.KeyValue
0, // 1: box_example.TestCaller_SetInfo_args.trace_info:type_name -> box_example.ServiceBoxTraceInfo
3, // 2: box_example.TestCaller_SetInfo_args.ctx:type_name -> box_example.Context
0, // 3: box_example.TestCaller_GetInfo_args.trace_info:type_name -> box_example.ServiceBoxTraceInfo
3, // 4: box_example.TestCaller_GetInfo_args.ctx:type_name -> box_example.Context
0, // 5: box_example.TestCallee_Add_args.trace_info:type_name -> box_example.ServiceBoxTraceInfo
3, // 6: box_example.TestCallee_Add_args.ctx:type_name -> box_example.Context
0, // 7: box_example.TestCallee_Sub_args.trace_info:type_name -> box_example.ServiceBoxTraceInfo
3, // 8: box_example.TestCallee_Sub_args.ctx:type_name -> box_example.Context
0, // 9: box_example.TestCallee_SubPrivate_args.trace_info:type_name -> box_example.ServiceBoxTraceInfo
3, // 10: box_example.TestCallee_SubPrivate_args.ctx:type_name -> box_example.Context
0, // 11: box_example.TestCallee_Divide_args.trace_info:type_name -> box_example.ServiceBoxTraceInfo
3, // 12: box_example.TestCallee_Divide_args.ctx:type_name -> box_example.Context
0, // 13: box_example.TestCaller_SetInfo_ret.trace_info:type_name -> box_example.ServiceBoxTraceInfo
1, // 14: box_example.TestCaller_SetInfo_ret.exec_info:type_name -> box_example.ExceptionInfo
3, // 15: box_example.TestCaller_SetInfo_ret.ctx:type_name -> box_example.Context
0, // 16: box_example.TestCaller_GetInfo_ret.trace_info:type_name -> box_example.ServiceBoxTraceInfo
1, // 17: box_example.TestCaller_GetInfo_ret.exec_info:type_name -> box_example.ExceptionInfo
3, // 18: box_example.TestCaller_GetInfo_ret.ctx:type_name -> box_example.Context
0, // 19: box_example.TestCallee_Add_ret.trace_info:type_name -> box_example.ServiceBoxTraceInfo
1, // 20: box_example.TestCallee_Add_ret.exec_info:type_name -> box_example.ExceptionInfo
3, // 21: box_example.TestCallee_Add_ret.ctx:type_name -> box_example.Context
0, // 22: box_example.TestCallee_Sub_ret.trace_info:type_name -> box_example.ServiceBoxTraceInfo
1, // 23: box_example.TestCallee_Sub_ret.exec_info:type_name -> box_example.ExceptionInfo
3, // 24: box_example.TestCallee_Sub_ret.ctx:type_name -> box_example.Context
0, // 25: box_example.TestCallee_SubPrivate_ret.trace_info:type_name -> box_example.ServiceBoxTraceInfo
1, // 26: box_example.TestCallee_SubPrivate_ret.exec_info:type_name -> box_example.ExceptionInfo
3, // 27: box_example.TestCallee_SubPrivate_ret.ctx:type_name -> box_example.Context
0, // 28: box_example.TestCallee_Divide_ret.trace_info:type_name -> box_example.ServiceBoxTraceInfo
1, // 29: box_example.TestCallee_Divide_ret.exec_info:type_name -> box_example.ExceptionInfo
3, // 30: box_example.TestCallee_Divide_ret.ctx:type_name -> box_example.Context
31, // [31:31] is the sub-list for method output_type
31, // [31:31] is the sub-list for method input_type
31, // [31:31] is the sub-list for extension type_name
31, // [31:31] is the sub-list for extension extendee
0, // [0:31] is the sub-list for field type_name
}
func init() { file_box_example_service_proto_init() }
func file_box_example_service_proto_init() {
if File_box_example_service_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_box_example_service_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ServiceBoxTraceInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_box_example_service_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*ExceptionInfo); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_box_example_service_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*KeyValue); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_box_example_service_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*Context); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_box_example_service_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TestCaller_SetInfoArgs); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_box_example_service_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TestCaller_GetInfoArgs); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_box_example_service_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TestCallee_AddArgs); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_box_example_service_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TestCallee_SubArgs); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_box_example_service_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TestCallee_SubPrivateArgs); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_box_example_service_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TestCallee_DivideArgs); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_box_example_service_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TestCaller_SetInfoRet); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_box_example_service_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TestCaller_GetInfoRet); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_box_example_service_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TestCallee_AddRet); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_box_example_service_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TestCallee_SubRet); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_box_example_service_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TestCallee_SubPrivateRet); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_box_example_service_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*TestCallee_DivideRet); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_box_example_service_proto_rawDesc,
NumEnums: 0,
NumMessages: 16,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_box_example_service_proto_goTypes,
DependencyIndexes: file_box_example_service_proto_depIdxs,
MessageInfos: file_box_example_service_proto_msgTypes,
}.Build()
File_box_example_service_proto = out.File
file_box_example_service_proto_rawDesc = nil
file_box_example_service_proto_goTypes = nil
file_box_example_service_proto_depIdxs = nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/dennis-kk/service-box-go.git
git@gitee.com:dennis-kk/service-box-go.git
dennis-kk
service-box-go
Service-Box-go
v0.5.17

搜索帮助