variety

package
v3.13.1+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 20, 2021 License: Apache-2.0 Imports: 9 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var FooBinMethodResult_API_DEFAULT *golang.APIException
View Source
var FooBinMethodResult_Success_DEFAULT []byte
View Source
var FooBlahResult_API_DEFAULT *golang.APIException
View Source
var FooBlahResult_Success_DEFAULT int64
View Source
var FooGetMyIntResult_Success_DEFAULT ValidTypes.MyInt
View Source
var FooGetThingResult_Success_DEFAULT *validStructs.Thing
View Source
var FooParamModifiersResult_Success_DEFAULT int64
View Source
var FooSayAgainResult_Success_DEFAULT string
View Source
var FooSayHelloWithResult_Success_DEFAULT string
View Source
var FooUnderlyingTypesTestResult_Success_DEFAULT []ID
View Source
var FooUseSubdirStructArgs_A_DEFAULT *subdir_include.A
View Source
var FooUseSubdirStructResult_Success_DEFAULT *subdir_include.A
View Source
var FooWhatDoYouSayResult_Success_DEFAULT string

Functions

This section is empty.

Types

type FFoo

type FFoo interface {
	golang.FBaseFoo

	// Ping the server.
	// Deprecated: don't use this; use "something else"
	Ping(ctx frugal.FContext) (err error)
	// Blah the server.
	Blah(ctx frugal.FContext, num int32, Str string, event *Event) (r int64, err error)
	// oneway methods don't receive a response from the server.
	OneWay(ctx frugal.FContext, id ID, req Request) (err error)
	BinMethod(ctx frugal.FContext, bin []byte, Str string) (r []byte, err error)
	ParamModifiers(ctx frugal.FContext, opt_num int32, default_num int32, req_num int32) (r int64, err error)
	UnderlyingTypesTest(ctx frugal.FContext, list_type []ID, set_type map[ID]bool) (r []ID, err error)
	GetThing(ctx frugal.FContext) (r *validStructs.Thing, err error)
	GetMyInt(ctx frugal.FContext) (r ValidTypes.MyInt, err error)
	UseSubdirStruct(ctx frugal.FContext, a *subdir_include.A) (r *subdir_include.A, err error)
	SayHelloWith(ctx frugal.FContext, newMessage string) (r string, err error)
	WhatDoYouSay(ctx frugal.FContext, messageArgs string) (r string, err error)
	SayAgain(ctx frugal.FContext, messageResult string) (r string, err error)
}

This is a thrift service. Frugal will generate bindings that include a frugal Context for each service call.

type FFooClient

type FFooClient struct {
	*golang.FBaseFooClient
	// contains filtered or unexported fields
}

This is a thrift service. Frugal will generate bindings that include a frugal Context for each service call.

func NewFFooClient

func NewFFooClient(provider *frugal.FServiceProvider, middleware ...frugal.ServiceMiddleware) *FFooClient

func (*FFooClient) BinMethod

func (f *FFooClient) BinMethod(ctx frugal.FContext, bin []byte, str string) (r []byte, err error)

func (*FFooClient) Blah

func (f *FFooClient) Blah(ctx frugal.FContext, num int32, str string, event *Event) (r int64, err error)

Blah the server.

func (*FFooClient) GetMyInt

func (f *FFooClient) GetMyInt(ctx frugal.FContext) (r ValidTypes.MyInt, err error)

func (*FFooClient) GetThing

func (f *FFooClient) GetThing(ctx frugal.FContext) (r *validStructs.Thing, err error)

func (*FFooClient) OneWay

func (f *FFooClient) OneWay(ctx frugal.FContext, id ID, req Request) (err error)

oneway methods don't receive a response from the server.

func (*FFooClient) ParamModifiers

func (f *FFooClient) ParamModifiers(ctx frugal.FContext, opt_num int32, default_num int32, req_num int32) (r int64, err error)

func (*FFooClient) Ping

func (f *FFooClient) Ping(ctx frugal.FContext) (err error)

Ping the server. Deprecated: don't use this; use "something else"

func (*FFooClient) SayAgain

func (f *FFooClient) SayAgain(ctx frugal.FContext, messageresult string) (r string, err error)

func (*FFooClient) SayHelloWith

func (f *FFooClient) SayHelloWith(ctx frugal.FContext, newmessage string) (r string, err error)

func (*FFooClient) UnderlyingTypesTest

func (f *FFooClient) UnderlyingTypesTest(ctx frugal.FContext, list_type []ID, set_type map[ID]bool) (r []ID, err error)

func (*FFooClient) UseSubdirStruct

func (f *FFooClient) UseSubdirStruct(ctx frugal.FContext, a *subdir_include.A) (r *subdir_include.A, err error)

func (*FFooClient) WhatDoYouSay

func (f *FFooClient) WhatDoYouSay(ctx frugal.FContext, messageargs string) (r string, err error)

type FFooProcessor

type FFooProcessor struct {
	*golang.FBaseFooProcessor
}

func NewFFooProcessor

func NewFFooProcessor(handler FFoo, middleware ...frugal.ServiceMiddleware) *FFooProcessor

type FooBinMethodArgs

type FooBinMethodArgs struct {
	Bin []byte `thrift:"bin,1" db:"bin" json:"bin"`
	Str string `thrift:"Str,2" db:"Str" json:"Str"`
}

func NewFooBinMethodArgs

func NewFooBinMethodArgs() *FooBinMethodArgs

func (*FooBinMethodArgs) GetBin

func (p *FooBinMethodArgs) GetBin() []byte

func (*FooBinMethodArgs) GetStr

func (p *FooBinMethodArgs) GetStr() string

func (*FooBinMethodArgs) Read

func (p *FooBinMethodArgs) Read(iprot thrift.TProtocol) error

func (*FooBinMethodArgs) ReadField1

func (p *FooBinMethodArgs) ReadField1(iprot thrift.TProtocol) error

func (*FooBinMethodArgs) ReadField2

func (p *FooBinMethodArgs) ReadField2(iprot thrift.TProtocol) error

func (*FooBinMethodArgs) String

func (p *FooBinMethodArgs) String() string

func (*FooBinMethodArgs) Write

func (p *FooBinMethodArgs) Write(oprot thrift.TProtocol) error

type FooBinMethodResult

type FooBinMethodResult struct {
	Success []byte               `thrift:"success,0" db:"success" json:"success,omitempty"`
	API     *golang.APIException `thrift:"api,1" db:"api" json:"api,omitempty"`
}

func NewFooBinMethodResult

func NewFooBinMethodResult() *FooBinMethodResult

func (*FooBinMethodResult) GetAPI

func (p *FooBinMethodResult) GetAPI() *golang.APIException

func (*FooBinMethodResult) GetSuccess

func (p *FooBinMethodResult) GetSuccess() []byte

func (*FooBinMethodResult) IsSetAPI

func (p *FooBinMethodResult) IsSetAPI() bool

func (*FooBinMethodResult) IsSetSuccess

func (p *FooBinMethodResult) IsSetSuccess() bool

func (*FooBinMethodResult) Read

func (p *FooBinMethodResult) Read(iprot thrift.TProtocol) error

func (*FooBinMethodResult) ReadField0

func (p *FooBinMethodResult) ReadField0(iprot thrift.TProtocol) error

func (*FooBinMethodResult) ReadField1

func (p *FooBinMethodResult) ReadField1(iprot thrift.TProtocol) error

func (*FooBinMethodResult) String

func (p *FooBinMethodResult) String() string

func (*FooBinMethodResult) Write

func (p *FooBinMethodResult) Write(oprot thrift.TProtocol) error

type FooBlahArgs

type FooBlahArgs struct {
	Num   int32  `thrift:"num,1" db:"num" json:"num"`
	Str   string `thrift:"Str,2" db:"Str" json:"Str"`
	Event *Event `thrift:"event,3" db:"event" json:"event"`
}

func NewFooBlahArgs

func NewFooBlahArgs() *FooBlahArgs

func (*FooBlahArgs) GetEvent

func (p *FooBlahArgs) GetEvent() *Event

func (*FooBlahArgs) GetNum

func (p *FooBlahArgs) GetNum() int32

func (*FooBlahArgs) GetStr

func (p *FooBlahArgs) GetStr() string

func (*FooBlahArgs) IsSetEvent

func (p *FooBlahArgs) IsSetEvent() bool

func (*FooBlahArgs) Read

func (p *FooBlahArgs) Read(iprot thrift.TProtocol) error

func (*FooBlahArgs) ReadField1

func (p *FooBlahArgs) ReadField1(iprot thrift.TProtocol) error

func (*FooBlahArgs) ReadField2

func (p *FooBlahArgs) ReadField2(iprot thrift.TProtocol) error

func (*FooBlahArgs) ReadField3

func (p *FooBlahArgs) ReadField3(iprot thrift.TProtocol) error

func (*FooBlahArgs) String

func (p *FooBlahArgs) String() string

func (*FooBlahArgs) Write

func (p *FooBlahArgs) Write(oprot thrift.TProtocol) error

type FooBlahResult

type FooBlahResult struct {
	Success *int64               `thrift:"success,0" db:"success" json:"success,omitempty"`
	Awe     *AwesomeException    `thrift:"awe,1" db:"awe" json:"awe,omitempty"`
	API     *golang.APIException `thrift:"api,2" db:"api" json:"api,omitempty"`
}

func NewFooBlahResult

func NewFooBlahResult() *FooBlahResult

func (*FooBlahResult) GetAPI

func (p *FooBlahResult) GetAPI() *golang.APIException

func (*FooBlahResult) GetAwe

func (p *FooBlahResult) GetAwe() *AwesomeException

func (*FooBlahResult) GetSuccess

func (p *FooBlahResult) GetSuccess() int64

func (*FooBlahResult) IsSetAPI

func (p *FooBlahResult) IsSetAPI() bool

func (*FooBlahResult) IsSetAwe

func (p *FooBlahResult) IsSetAwe() bool

func (*FooBlahResult) IsSetSuccess

func (p *FooBlahResult) IsSetSuccess() bool

func (*FooBlahResult) Read

func (p *FooBlahResult) Read(iprot thrift.TProtocol) error

func (*FooBlahResult) ReadField0

func (p *FooBlahResult) ReadField0(iprot thrift.TProtocol) error

func (*FooBlahResult) ReadField1

func (p *FooBlahResult) ReadField1(iprot thrift.TProtocol) error

func (*FooBlahResult) ReadField2

func (p *FooBlahResult) ReadField2(iprot thrift.TProtocol) error

func (*FooBlahResult) String

func (p *FooBlahResult) String() string

func (*FooBlahResult) Write

func (p *FooBlahResult) Write(oprot thrift.TProtocol) error

type FooGetMyIntArgs

type FooGetMyIntArgs struct {
}

func NewFooGetMyIntArgs

func NewFooGetMyIntArgs() *FooGetMyIntArgs

func (*FooGetMyIntArgs) Read

func (p *FooGetMyIntArgs) Read(iprot thrift.TProtocol) error

func (*FooGetMyIntArgs) String

func (p *FooGetMyIntArgs) String() string

func (*FooGetMyIntArgs) Write

func (p *FooGetMyIntArgs) Write(oprot thrift.TProtocol) error

type FooGetMyIntResult

type FooGetMyIntResult struct {
	Success *ValidTypes.MyInt `thrift:"success,0" db:"success" json:"success,omitempty"`
}

func NewFooGetMyIntResult

func NewFooGetMyIntResult() *FooGetMyIntResult

func (*FooGetMyIntResult) GetSuccess

func (p *FooGetMyIntResult) GetSuccess() ValidTypes.MyInt

func (*FooGetMyIntResult) IsSetSuccess

func (p *FooGetMyIntResult) IsSetSuccess() bool

func (*FooGetMyIntResult) Read

func (p *FooGetMyIntResult) Read(iprot thrift.TProtocol) error

func (*FooGetMyIntResult) ReadField0

func (p *FooGetMyIntResult) ReadField0(iprot thrift.TProtocol) error

func (*FooGetMyIntResult) String

func (p *FooGetMyIntResult) String() string

func (*FooGetMyIntResult) Write

func (p *FooGetMyIntResult) Write(oprot thrift.TProtocol) error

type FooGetThingArgs

type FooGetThingArgs struct {
}

func NewFooGetThingArgs

func NewFooGetThingArgs() *FooGetThingArgs

func (*FooGetThingArgs) Read

func (p *FooGetThingArgs) Read(iprot thrift.TProtocol) error

func (*FooGetThingArgs) String

func (p *FooGetThingArgs) String() string

func (*FooGetThingArgs) Write

func (p *FooGetThingArgs) Write(oprot thrift.TProtocol) error

type FooGetThingResult

type FooGetThingResult struct {
	Success *validStructs.Thing `thrift:"success,0" db:"success" json:"success,omitempty"`
}

func NewFooGetThingResult

func NewFooGetThingResult() *FooGetThingResult

func (*FooGetThingResult) GetSuccess

func (p *FooGetThingResult) GetSuccess() *validStructs.Thing

func (*FooGetThingResult) IsSetSuccess

func (p *FooGetThingResult) IsSetSuccess() bool

func (*FooGetThingResult) Read

func (p *FooGetThingResult) Read(iprot thrift.TProtocol) error

func (*FooGetThingResult) ReadField0

func (p *FooGetThingResult) ReadField0(iprot thrift.TProtocol) error

func (*FooGetThingResult) String

func (p *FooGetThingResult) String() string

func (*FooGetThingResult) Write

func (p *FooGetThingResult) Write(oprot thrift.TProtocol) error

type FooOneWayArgs

type FooOneWayArgs struct {
	ID  ID      `thrift:"id,1" db:"id" json:"id"`
	Req Request `thrift:"req,2" db:"req" json:"req"`
}

func NewFooOneWayArgs

func NewFooOneWayArgs() *FooOneWayArgs

func (*FooOneWayArgs) GetID

func (p *FooOneWayArgs) GetID() ID

func (*FooOneWayArgs) GetReq

func (p *FooOneWayArgs) GetReq() Request

func (*FooOneWayArgs) Read

func (p *FooOneWayArgs) Read(iprot thrift.TProtocol) error

func (*FooOneWayArgs) ReadField1

func (p *FooOneWayArgs) ReadField1(iprot thrift.TProtocol) error

func (*FooOneWayArgs) ReadField2

func (p *FooOneWayArgs) ReadField2(iprot thrift.TProtocol) error

func (*FooOneWayArgs) String

func (p *FooOneWayArgs) String() string

func (*FooOneWayArgs) Write

func (p *FooOneWayArgs) Write(oprot thrift.TProtocol) error

type FooParamModifiersArgs

type FooParamModifiersArgs struct {
	OptNum     int32 `thrift:"opt_num,1" db:"opt_num" json:"opt_num"`
	DefaultNum int32 `thrift:"default_num,2" db:"default_num" json:"default_num"`
	ReqNum     int32 `thrift:"req_num,3,required" db:"req_num" json:"req_num"`
}

func NewFooParamModifiersArgs

func NewFooParamModifiersArgs() *FooParamModifiersArgs

func (*FooParamModifiersArgs) GetDefaultNum

func (p *FooParamModifiersArgs) GetDefaultNum() int32

func (*FooParamModifiersArgs) GetOptNum

func (p *FooParamModifiersArgs) GetOptNum() int32

func (*FooParamModifiersArgs) GetReqNum

func (p *FooParamModifiersArgs) GetReqNum() int32

func (*FooParamModifiersArgs) Read

func (*FooParamModifiersArgs) ReadField1

func (p *FooParamModifiersArgs) ReadField1(iprot thrift.TProtocol) error

func (*FooParamModifiersArgs) ReadField2

func (p *FooParamModifiersArgs) ReadField2(iprot thrift.TProtocol) error

func (*FooParamModifiersArgs) ReadField3

func (p *FooParamModifiersArgs) ReadField3(iprot thrift.TProtocol) error

func (*FooParamModifiersArgs) String

func (p *FooParamModifiersArgs) String() string

func (*FooParamModifiersArgs) Write

func (p *FooParamModifiersArgs) Write(oprot thrift.TProtocol) error

type FooParamModifiersResult

type FooParamModifiersResult struct {
	Success *int64 `thrift:"success,0" db:"success" json:"success,omitempty"`
}

func NewFooParamModifiersResult

func NewFooParamModifiersResult() *FooParamModifiersResult

func (*FooParamModifiersResult) GetSuccess

func (p *FooParamModifiersResult) GetSuccess() int64

func (*FooParamModifiersResult) IsSetSuccess

func (p *FooParamModifiersResult) IsSetSuccess() bool

func (*FooParamModifiersResult) Read

func (*FooParamModifiersResult) ReadField0

func (p *FooParamModifiersResult) ReadField0(iprot thrift.TProtocol) error

func (*FooParamModifiersResult) String

func (p *FooParamModifiersResult) String() string

func (*FooParamModifiersResult) Write

type FooPingArgs

type FooPingArgs struct {
}

func NewFooPingArgs

func NewFooPingArgs() *FooPingArgs

func (*FooPingArgs) Read

func (p *FooPingArgs) Read(iprot thrift.TProtocol) error

func (*FooPingArgs) String

func (p *FooPingArgs) String() string

func (*FooPingArgs) Write

func (p *FooPingArgs) Write(oprot thrift.TProtocol) error

type FooPingResult

type FooPingResult struct {
}

func NewFooPingResult

func NewFooPingResult() *FooPingResult

func (*FooPingResult) Read

func (p *FooPingResult) Read(iprot thrift.TProtocol) error

func (*FooPingResult) String

func (p *FooPingResult) String() string

func (*FooPingResult) Write

func (p *FooPingResult) Write(oprot thrift.TProtocol) error

type FooSayAgainArgs

type FooSayAgainArgs struct {
	MessageResult_ string `thrift:"messageResult,1" db:"messageResult" json:"messageResult"`
}

func NewFooSayAgainArgs

func NewFooSayAgainArgs() *FooSayAgainArgs

func (*FooSayAgainArgs) GetMessageResult_

func (p *FooSayAgainArgs) GetMessageResult_() string

func (*FooSayAgainArgs) Read

func (p *FooSayAgainArgs) Read(iprot thrift.TProtocol) error

func (*FooSayAgainArgs) ReadField1

func (p *FooSayAgainArgs) ReadField1(iprot thrift.TProtocol) error

func (*FooSayAgainArgs) String

func (p *FooSayAgainArgs) String() string

func (*FooSayAgainArgs) Write

func (p *FooSayAgainArgs) Write(oprot thrift.TProtocol) error

type FooSayAgainResult

type FooSayAgainResult struct {
	Success *string `thrift:"success,0" db:"success" json:"success,omitempty"`
}

func NewFooSayAgainResult

func NewFooSayAgainResult() *FooSayAgainResult

func (*FooSayAgainResult) GetSuccess

func (p *FooSayAgainResult) GetSuccess() string

func (*FooSayAgainResult) IsSetSuccess

func (p *FooSayAgainResult) IsSetSuccess() bool

func (*FooSayAgainResult) Read

func (p *FooSayAgainResult) Read(iprot thrift.TProtocol) error

func (*FooSayAgainResult) ReadField0

func (p *FooSayAgainResult) ReadField0(iprot thrift.TProtocol) error

func (*FooSayAgainResult) String

func (p *FooSayAgainResult) String() string

func (*FooSayAgainResult) Write

func (p *FooSayAgainResult) Write(oprot thrift.TProtocol) error

type FooSayHelloWithArgs

type FooSayHelloWithArgs struct {
	NewMessage_ string `thrift:"newMessage,1" db:"newMessage" json:"newMessage"`
}

func NewFooSayHelloWithArgs

func NewFooSayHelloWithArgs() *FooSayHelloWithArgs

func (*FooSayHelloWithArgs) GetNewMessage_

func (p *FooSayHelloWithArgs) GetNewMessage_() string

func (*FooSayHelloWithArgs) Read

func (p *FooSayHelloWithArgs) Read(iprot thrift.TProtocol) error

func (*FooSayHelloWithArgs) ReadField1

func (p *FooSayHelloWithArgs) ReadField1(iprot thrift.TProtocol) error

func (*FooSayHelloWithArgs) String

func (p *FooSayHelloWithArgs) String() string

func (*FooSayHelloWithArgs) Write

func (p *FooSayHelloWithArgs) Write(oprot thrift.TProtocol) error

type FooSayHelloWithResult

type FooSayHelloWithResult struct {
	Success *string `thrift:"success,0" db:"success" json:"success,omitempty"`
}

func NewFooSayHelloWithResult

func NewFooSayHelloWithResult() *FooSayHelloWithResult

func (*FooSayHelloWithResult) GetSuccess

func (p *FooSayHelloWithResult) GetSuccess() string

func (*FooSayHelloWithResult) IsSetSuccess

func (p *FooSayHelloWithResult) IsSetSuccess() bool

func (*FooSayHelloWithResult) Read

func (*FooSayHelloWithResult) ReadField0

func (p *FooSayHelloWithResult) ReadField0(iprot thrift.TProtocol) error

func (*FooSayHelloWithResult) String

func (p *FooSayHelloWithResult) String() string

func (*FooSayHelloWithResult) Write

func (p *FooSayHelloWithResult) Write(oprot thrift.TProtocol) error

type FooUnderlyingTypesTestArgs

type FooUnderlyingTypesTestArgs struct {
	ListType []ID        `thrift:"list_type,1" db:"list_type" json:"list_type"`
	SetType  map[ID]bool `thrift:"set_type,2" db:"set_type" json:"set_type"`
}

func NewFooUnderlyingTypesTestArgs

func NewFooUnderlyingTypesTestArgs() *FooUnderlyingTypesTestArgs

func (*FooUnderlyingTypesTestArgs) GetListType

func (p *FooUnderlyingTypesTestArgs) GetListType() []ID

func (*FooUnderlyingTypesTestArgs) GetSetType

func (p *FooUnderlyingTypesTestArgs) GetSetType() map[ID]bool

func (*FooUnderlyingTypesTestArgs) Read

func (*FooUnderlyingTypesTestArgs) ReadField1

func (p *FooUnderlyingTypesTestArgs) ReadField1(iprot thrift.TProtocol) error

func (*FooUnderlyingTypesTestArgs) ReadField2

func (p *FooUnderlyingTypesTestArgs) ReadField2(iprot thrift.TProtocol) error

func (*FooUnderlyingTypesTestArgs) String

func (p *FooUnderlyingTypesTestArgs) String() string

func (*FooUnderlyingTypesTestArgs) Write

type FooUnderlyingTypesTestResult

type FooUnderlyingTypesTestResult struct {
	Success []ID `thrift:"success,0" db:"success" json:"success,omitempty"`
}

func NewFooUnderlyingTypesTestResult

func NewFooUnderlyingTypesTestResult() *FooUnderlyingTypesTestResult

func (*FooUnderlyingTypesTestResult) GetSuccess

func (p *FooUnderlyingTypesTestResult) GetSuccess() []ID

func (*FooUnderlyingTypesTestResult) IsSetSuccess

func (p *FooUnderlyingTypesTestResult) IsSetSuccess() bool

func (*FooUnderlyingTypesTestResult) Read

func (*FooUnderlyingTypesTestResult) ReadField0

func (p *FooUnderlyingTypesTestResult) ReadField0(iprot thrift.TProtocol) error

func (*FooUnderlyingTypesTestResult) String

func (*FooUnderlyingTypesTestResult) Write

type FooUseSubdirStructArgs

type FooUseSubdirStructArgs struct {
	A *subdir_include.A `thrift:"a,1" db:"a" json:"a"`
}

func NewFooUseSubdirStructArgs

func NewFooUseSubdirStructArgs() *FooUseSubdirStructArgs

func (*FooUseSubdirStructArgs) GetA

func (*FooUseSubdirStructArgs) IsSetA

func (p *FooUseSubdirStructArgs) IsSetA() bool

func (*FooUseSubdirStructArgs) Read

func (*FooUseSubdirStructArgs) ReadField1

func (p *FooUseSubdirStructArgs) ReadField1(iprot thrift.TProtocol) error

func (*FooUseSubdirStructArgs) String

func (p *FooUseSubdirStructArgs) String() string

func (*FooUseSubdirStructArgs) Write

func (p *FooUseSubdirStructArgs) Write(oprot thrift.TProtocol) error

type FooUseSubdirStructResult

type FooUseSubdirStructResult struct {
	Success *subdir_include.A `thrift:"success,0" db:"success" json:"success,omitempty"`
}

func NewFooUseSubdirStructResult

func NewFooUseSubdirStructResult() *FooUseSubdirStructResult

func (*FooUseSubdirStructResult) GetSuccess

func (p *FooUseSubdirStructResult) GetSuccess() *subdir_include.A

func (*FooUseSubdirStructResult) IsSetSuccess

func (p *FooUseSubdirStructResult) IsSetSuccess() bool

func (*FooUseSubdirStructResult) Read

func (*FooUseSubdirStructResult) ReadField0

func (p *FooUseSubdirStructResult) ReadField0(iprot thrift.TProtocol) error

func (*FooUseSubdirStructResult) String

func (p *FooUseSubdirStructResult) String() string

func (*FooUseSubdirStructResult) Write

type FooWhatDoYouSayArgs

type FooWhatDoYouSayArgs struct {
	MessageArgs_ string `thrift:"messageArgs,1" db:"messageArgs" json:"messageArgs"`
}

func NewFooWhatDoYouSayArgs

func NewFooWhatDoYouSayArgs() *FooWhatDoYouSayArgs

func (*FooWhatDoYouSayArgs) GetMessageArgs_

func (p *FooWhatDoYouSayArgs) GetMessageArgs_() string

func (*FooWhatDoYouSayArgs) Read

func (p *FooWhatDoYouSayArgs) Read(iprot thrift.TProtocol) error

func (*FooWhatDoYouSayArgs) ReadField1

func (p *FooWhatDoYouSayArgs) ReadField1(iprot thrift.TProtocol) error

func (*FooWhatDoYouSayArgs) String

func (p *FooWhatDoYouSayArgs) String() string

func (*FooWhatDoYouSayArgs) Write

func (p *FooWhatDoYouSayArgs) Write(oprot thrift.TProtocol) error

type FooWhatDoYouSayResult

type FooWhatDoYouSayResult struct {
	Success *string `thrift:"success,0" db:"success" json:"success,omitempty"`
}

func NewFooWhatDoYouSayResult

func NewFooWhatDoYouSayResult() *FooWhatDoYouSayResult

func (*FooWhatDoYouSayResult) GetSuccess

func (p *FooWhatDoYouSayResult) GetSuccess() string

func (*FooWhatDoYouSayResult) IsSetSuccess

func (p *FooWhatDoYouSayResult) IsSetSuccess() bool

func (*FooWhatDoYouSayResult) Read

func (*FooWhatDoYouSayResult) ReadField0

func (p *FooWhatDoYouSayResult) ReadField0(iprot thrift.TProtocol) error

func (*FooWhatDoYouSayResult) String

func (p *FooWhatDoYouSayResult) String() string

func (*FooWhatDoYouSayResult) Write

func (p *FooWhatDoYouSayResult) Write(oprot thrift.TProtocol) error

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL