module

package
v0.0.0-...-7428086 Latest Latest
Warning

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

Go to latest
Published: Nov 23, 2023 License: Apache-2.0 Imports: 5 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var GetEntityGetBinaryResult_Success_DEFAULT []byte
View Source
var GetEntityGetBoolResult_Success_DEFAULT bool
View Source
var GetEntityGetByteResult_Success_DEFAULT int8
View Source
var GetEntityGetDoubleResult_Success_DEFAULT float64
View Source
var GetEntityGetI16Result_Success_DEFAULT int16
View Source
var GetEntityGetI32Result_Success_DEFAULT int32
View Source
var GetEntityGetI64Result_Success_DEFAULT int64
View Source
var GetEntityGetLegacyStuffResult_Success_DEFAULT int32
View Source
var GetEntityGetListResult_Success_DEFAULT []string
View Source
var GetEntityGetMapResult_Success_DEFAULT map[string]string
View Source
var GetEntityGetSetResult_Success_DEFAULT []string
View Source
var GetEntityGetStringResult_Success_DEFAULT string
View Source
var GoUnusedProtection__ int

Functions

This section is empty.

Types

type GetEntity

type GetEntity interface {
	// Parameters:
	//  - R
	GetEntity(r *GetEntityRequest) (_r *GetEntityResponse, err error)
	GetBool() (_r bool, err error)
	GetByte() (_r int8, err error)
	GetI16() (_r int16, err error)
	GetI32() (_r int32, err error)
	GetI64() (_r int64, err error)
	GetDouble() (_r float64, err error)
	GetString() (_r string, err error)
	GetBinary() (_r []byte, err error)
	GetMap() (_r map[string]string, err error)
	GetSet() (_r []string, err error)
	GetList() (_r []string, err error)
	// Parameters:
	//  - NumPos
	//  - NumNeg1
	//  - NumNeg2
	GetLegacyStuff(numPos int64, numNeg1 int64, numNeg2 int64) (_r int32, err error)
}

type GetEntityChannelClient

type GetEntityChannelClient struct {
	RequestChannel thrift.RequestChannel
}

func NewGetEntityChannelClient

func NewGetEntityChannelClient(channel thrift.RequestChannel) *GetEntityChannelClient

func (*GetEntityChannelClient) Close

func (c *GetEntityChannelClient) Close() error

func (*GetEntityChannelClient) GetBinary

func (p *GetEntityChannelClient) GetBinary(ctx context.Context) (_r []byte, err error)

func (*GetEntityChannelClient) GetBool

func (p *GetEntityChannelClient) GetBool(ctx context.Context) (_r bool, err error)

func (*GetEntityChannelClient) GetByte

func (p *GetEntityChannelClient) GetByte(ctx context.Context) (_r int8, err error)

func (*GetEntityChannelClient) GetDouble

func (p *GetEntityChannelClient) GetDouble(ctx context.Context) (_r float64, err error)

func (*GetEntityChannelClient) GetEntity

Parameters:

  • R

func (*GetEntityChannelClient) GetI16

func (p *GetEntityChannelClient) GetI16(ctx context.Context) (_r int16, err error)

func (*GetEntityChannelClient) GetI32

func (p *GetEntityChannelClient) GetI32(ctx context.Context) (_r int32, err error)

func (*GetEntityChannelClient) GetI64

func (p *GetEntityChannelClient) GetI64(ctx context.Context) (_r int64, err error)

func (*GetEntityChannelClient) GetLegacyStuff

func (p *GetEntityChannelClient) GetLegacyStuff(ctx context.Context, numPos int64, numNeg1 int64, numNeg2 int64) (_r int32, err error)

Parameters:

  • NumPos
  • NumNeg1
  • NumNeg2

func (*GetEntityChannelClient) GetList

func (p *GetEntityChannelClient) GetList(ctx context.Context) (_r []string, err error)

func (*GetEntityChannelClient) GetMap

func (p *GetEntityChannelClient) GetMap(ctx context.Context) (_r map[string]string, err error)

func (*GetEntityChannelClient) GetSet

func (p *GetEntityChannelClient) GetSet(ctx context.Context) (_r []string, err error)

func (*GetEntityChannelClient) GetString

func (p *GetEntityChannelClient) GetString(ctx context.Context) (_r string, err error)

func (*GetEntityChannelClient) IsOpen

func (c *GetEntityChannelClient) IsOpen() bool

func (*GetEntityChannelClient) Open

func (c *GetEntityChannelClient) Open() error

type GetEntityClient

type GetEntityClient struct {
	GetEntityClientInterface
	CC thrift.ClientConn
}

func NewGetEntityClient

func NewGetEntityClient(t thrift.Transport, iprot thrift.Protocol, oprot thrift.Protocol) *GetEntityClient

func NewGetEntityClientProtocol

func NewGetEntityClientProtocol(prot thrift.Protocol) *GetEntityClient

func (*GetEntityClient) Close

func (client *GetEntityClient) Close() error

func (*GetEntityClient) GetBinary

func (p *GetEntityClient) GetBinary() (_r []byte, err error)

func (*GetEntityClient) GetBool

func (p *GetEntityClient) GetBool() (_r bool, err error)

func (*GetEntityClient) GetByte

func (p *GetEntityClient) GetByte() (_r int8, err error)

func (*GetEntityClient) GetDouble

func (p *GetEntityClient) GetDouble() (_r float64, err error)

func (*GetEntityClient) GetEntity

func (p *GetEntityClient) GetEntity(r *GetEntityRequest) (_r *GetEntityResponse, err error)

Parameters:

  • R

func (*GetEntityClient) GetI16

func (p *GetEntityClient) GetI16() (_r int16, err error)

func (*GetEntityClient) GetI32

func (p *GetEntityClient) GetI32() (_r int32, err error)

func (*GetEntityClient) GetI64

func (p *GetEntityClient) GetI64() (_r int64, err error)

func (*GetEntityClient) GetLegacyStuff

func (p *GetEntityClient) GetLegacyStuff(numPos int64, numNeg1 int64, numNeg2 int64) (_r int32, err error)

Parameters:

  • NumPos
  • NumNeg1
  • NumNeg2

func (*GetEntityClient) GetList

func (p *GetEntityClient) GetList() (_r []string, err error)

func (*GetEntityClient) GetMap

func (p *GetEntityClient) GetMap() (_r map[string]string, err error)

func (*GetEntityClient) GetSet

func (p *GetEntityClient) GetSet() (_r []string, err error)

func (*GetEntityClient) GetString

func (p *GetEntityClient) GetString() (_r string, err error)

func (*GetEntityClient) IsOpen

func (client *GetEntityClient) IsOpen() bool

func (*GetEntityClient) Open

func (client *GetEntityClient) Open() error

type GetEntityClientInterface

type GetEntityClientInterface interface {
	thrift.ClientInterface
	// Parameters:
	//  - R
	GetEntity(r *GetEntityRequest) (_r *GetEntityResponse, err error)
	GetBool() (_r bool, err error)
	GetByte() (_r int8, err error)
	GetI16() (_r int16, err error)
	GetI32() (_r int32, err error)
	GetI64() (_r int64, err error)
	GetDouble() (_r float64, err error)
	GetString() (_r string, err error)
	GetBinary() (_r []byte, err error)
	GetMap() (_r map[string]string, err error)
	GetSet() (_r []string, err error)
	GetList() (_r []string, err error)
	// Parameters:
	//  - NumPos
	//  - NumNeg1
	//  - NumNeg2
	GetLegacyStuff(numPos int64, numNeg1 int64, numNeg2 int64) (_r int32, err error)
}

type GetEntityGetBinaryArgs

type GetEntityGetBinaryArgs struct {
	thrift.IRequest
}

func NewGetEntityGetBinaryArgs

func NewGetEntityGetBinaryArgs() *GetEntityGetBinaryArgs

func (*GetEntityGetBinaryArgs) Read

func (*GetEntityGetBinaryArgs) String

func (p *GetEntityGetBinaryArgs) String() string

func (*GetEntityGetBinaryArgs) Write

func (p *GetEntityGetBinaryArgs) Write(oprot thrift.Protocol) error

type GetEntityGetBinaryArgsBuilder

type GetEntityGetBinaryArgsBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetBinaryArgsBuilder

func NewGetEntityGetBinaryArgsBuilder() *GetEntityGetBinaryArgsBuilder

func (GetEntityGetBinaryArgsBuilder) Emit

type GetEntityGetBinaryResult

type GetEntityGetBinaryResult struct {
	thrift.IResponse
	Success []byte `thrift:"success,0,optional" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewGetEntityGetBinaryResult

func NewGetEntityGetBinaryResult() *GetEntityGetBinaryResult

func (*GetEntityGetBinaryResult) Exception

func (*GetEntityGetBinaryResult) GetSuccess

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

func (*GetEntityGetBinaryResult) IsSetSuccess

func (p *GetEntityGetBinaryResult) IsSetSuccess() bool

func (*GetEntityGetBinaryResult) Read

func (*GetEntityGetBinaryResult) ReadField0

func (p *GetEntityGetBinaryResult) ReadField0(iprot thrift.Protocol) error

func (*GetEntityGetBinaryResult) SetSuccess

func (g *GetEntityGetBinaryResult) SetSuccess(success []byte) *GetEntityGetBinaryResult

func (*GetEntityGetBinaryResult) String

func (p *GetEntityGetBinaryResult) String() string

func (*GetEntityGetBinaryResult) Write

type GetEntityGetBinaryResultBuilder

type GetEntityGetBinaryResultBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetBinaryResultBuilder

func NewGetEntityGetBinaryResultBuilder() *GetEntityGetBinaryResultBuilder

func (GetEntityGetBinaryResultBuilder) Emit

func (*GetEntityGetBinaryResultBuilder) Success

type GetEntityGetBoolArgs

type GetEntityGetBoolArgs struct {
	thrift.IRequest
}

func NewGetEntityGetBoolArgs

func NewGetEntityGetBoolArgs() *GetEntityGetBoolArgs

func (*GetEntityGetBoolArgs) Read

func (p *GetEntityGetBoolArgs) Read(iprot thrift.Protocol) error

func (*GetEntityGetBoolArgs) String

func (p *GetEntityGetBoolArgs) String() string

func (*GetEntityGetBoolArgs) Write

func (p *GetEntityGetBoolArgs) Write(oprot thrift.Protocol) error

type GetEntityGetBoolArgsBuilder

type GetEntityGetBoolArgsBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetBoolArgsBuilder

func NewGetEntityGetBoolArgsBuilder() *GetEntityGetBoolArgsBuilder

func (GetEntityGetBoolArgsBuilder) Emit

type GetEntityGetBoolResult

type GetEntityGetBoolResult struct {
	thrift.IResponse
	Success *bool `thrift:"success,0,optional" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewGetEntityGetBoolResult

func NewGetEntityGetBoolResult() *GetEntityGetBoolResult

func (*GetEntityGetBoolResult) Exception

func (*GetEntityGetBoolResult) GetSuccess

func (p *GetEntityGetBoolResult) GetSuccess() bool

func (*GetEntityGetBoolResult) IsSetSuccess

func (p *GetEntityGetBoolResult) IsSetSuccess() bool

func (*GetEntityGetBoolResult) Read

func (*GetEntityGetBoolResult) ReadField0

func (p *GetEntityGetBoolResult) ReadField0(iprot thrift.Protocol) error

func (*GetEntityGetBoolResult) SetSuccess

func (g *GetEntityGetBoolResult) SetSuccess(success *bool) *GetEntityGetBoolResult

func (*GetEntityGetBoolResult) String

func (p *GetEntityGetBoolResult) String() string

func (*GetEntityGetBoolResult) Write

func (p *GetEntityGetBoolResult) Write(oprot thrift.Protocol) error

type GetEntityGetBoolResultBuilder

type GetEntityGetBoolResultBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetBoolResultBuilder

func NewGetEntityGetBoolResultBuilder() *GetEntityGetBoolResultBuilder

func (GetEntityGetBoolResultBuilder) Emit

func (*GetEntityGetBoolResultBuilder) Success

type GetEntityGetByteArgs

type GetEntityGetByteArgs struct {
	thrift.IRequest
}

func NewGetEntityGetByteArgs

func NewGetEntityGetByteArgs() *GetEntityGetByteArgs

func (*GetEntityGetByteArgs) Read

func (p *GetEntityGetByteArgs) Read(iprot thrift.Protocol) error

func (*GetEntityGetByteArgs) String

func (p *GetEntityGetByteArgs) String() string

func (*GetEntityGetByteArgs) Write

func (p *GetEntityGetByteArgs) Write(oprot thrift.Protocol) error

type GetEntityGetByteArgsBuilder

type GetEntityGetByteArgsBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetByteArgsBuilder

func NewGetEntityGetByteArgsBuilder() *GetEntityGetByteArgsBuilder

func (GetEntityGetByteArgsBuilder) Emit

type GetEntityGetByteResult

type GetEntityGetByteResult struct {
	thrift.IResponse
	Success *int8 `thrift:"success,0,optional" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewGetEntityGetByteResult

func NewGetEntityGetByteResult() *GetEntityGetByteResult

func (*GetEntityGetByteResult) Exception

func (*GetEntityGetByteResult) GetSuccess

func (p *GetEntityGetByteResult) GetSuccess() int8

func (*GetEntityGetByteResult) IsSetSuccess

func (p *GetEntityGetByteResult) IsSetSuccess() bool

func (*GetEntityGetByteResult) Read

func (*GetEntityGetByteResult) ReadField0

func (p *GetEntityGetByteResult) ReadField0(iprot thrift.Protocol) error

func (*GetEntityGetByteResult) SetSuccess

func (g *GetEntityGetByteResult) SetSuccess(success *int8) *GetEntityGetByteResult

func (*GetEntityGetByteResult) String

func (p *GetEntityGetByteResult) String() string

func (*GetEntityGetByteResult) Write

func (p *GetEntityGetByteResult) Write(oprot thrift.Protocol) error

type GetEntityGetByteResultBuilder

type GetEntityGetByteResultBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetByteResultBuilder

func NewGetEntityGetByteResultBuilder() *GetEntityGetByteResultBuilder

func (GetEntityGetByteResultBuilder) Emit

func (*GetEntityGetByteResultBuilder) Success

type GetEntityGetDoubleArgs

type GetEntityGetDoubleArgs struct {
	thrift.IRequest
}

func NewGetEntityGetDoubleArgs

func NewGetEntityGetDoubleArgs() *GetEntityGetDoubleArgs

func (*GetEntityGetDoubleArgs) Read

func (*GetEntityGetDoubleArgs) String

func (p *GetEntityGetDoubleArgs) String() string

func (*GetEntityGetDoubleArgs) Write

func (p *GetEntityGetDoubleArgs) Write(oprot thrift.Protocol) error

type GetEntityGetDoubleArgsBuilder

type GetEntityGetDoubleArgsBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetDoubleArgsBuilder

func NewGetEntityGetDoubleArgsBuilder() *GetEntityGetDoubleArgsBuilder

func (GetEntityGetDoubleArgsBuilder) Emit

type GetEntityGetDoubleResult

type GetEntityGetDoubleResult struct {
	thrift.IResponse
	Success *float64 `thrift:"success,0,optional" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewGetEntityGetDoubleResult

func NewGetEntityGetDoubleResult() *GetEntityGetDoubleResult

func (*GetEntityGetDoubleResult) Exception

func (*GetEntityGetDoubleResult) GetSuccess

func (p *GetEntityGetDoubleResult) GetSuccess() float64

func (*GetEntityGetDoubleResult) IsSetSuccess

func (p *GetEntityGetDoubleResult) IsSetSuccess() bool

func (*GetEntityGetDoubleResult) Read

func (*GetEntityGetDoubleResult) ReadField0

func (p *GetEntityGetDoubleResult) ReadField0(iprot thrift.Protocol) error

func (*GetEntityGetDoubleResult) SetSuccess

func (*GetEntityGetDoubleResult) String

func (p *GetEntityGetDoubleResult) String() string

func (*GetEntityGetDoubleResult) Write

type GetEntityGetDoubleResultBuilder

type GetEntityGetDoubleResultBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetDoubleResultBuilder

func NewGetEntityGetDoubleResultBuilder() *GetEntityGetDoubleResultBuilder

func (GetEntityGetDoubleResultBuilder) Emit

func (*GetEntityGetDoubleResultBuilder) Success

type GetEntityGetEntityArgs

type GetEntityGetEntityArgs struct {
	thrift.IRequest
	R *GetEntityRequest `thrift:"r,1" db:"r" json:"r"`
}

Attributes:

  • R

func NewGetEntityGetEntityArgs

func NewGetEntityGetEntityArgs() *GetEntityGetEntityArgs

func (*GetEntityGetEntityArgs) DefaultGetR

func (p *GetEntityGetEntityArgs) DefaultGetR() *GetEntityRequest

func (*GetEntityGetEntityArgs) GetR

func (*GetEntityGetEntityArgs) IsSetR

func (p *GetEntityGetEntityArgs) IsSetR() bool

func (*GetEntityGetEntityArgs) Read

func (*GetEntityGetEntityArgs) ReadField1

func (p *GetEntityGetEntityArgs) ReadField1(iprot thrift.Protocol) error

func (*GetEntityGetEntityArgs) SetR

func (*GetEntityGetEntityArgs) String

func (p *GetEntityGetEntityArgs) String() string

func (*GetEntityGetEntityArgs) Write

func (p *GetEntityGetEntityArgs) Write(oprot thrift.Protocol) error

type GetEntityGetEntityArgsBuilder

type GetEntityGetEntityArgsBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetEntityArgsBuilder

func NewGetEntityGetEntityArgsBuilder() *GetEntityGetEntityArgsBuilder

func (GetEntityGetEntityArgsBuilder) Emit

func (*GetEntityGetEntityArgsBuilder) R

type GetEntityGetEntityResult

type GetEntityGetEntityResult struct {
	thrift.IResponse
	Success *GetEntityResponse `thrift:"success,0,optional" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewGetEntityGetEntityResult

func NewGetEntityGetEntityResult() *GetEntityGetEntityResult

func (*GetEntityGetEntityResult) DefaultGetSuccess

func (p *GetEntityGetEntityResult) DefaultGetSuccess() *GetEntityResponse

func (*GetEntityGetEntityResult) Exception

func (*GetEntityGetEntityResult) GetSuccess

func (*GetEntityGetEntityResult) IsSetSuccess

func (p *GetEntityGetEntityResult) IsSetSuccess() bool

func (*GetEntityGetEntityResult) Read

func (*GetEntityGetEntityResult) ReadField0

func (p *GetEntityGetEntityResult) ReadField0(iprot thrift.Protocol) error

func (*GetEntityGetEntityResult) SetSuccess

func (*GetEntityGetEntityResult) String

func (p *GetEntityGetEntityResult) String() string

func (*GetEntityGetEntityResult) Write

type GetEntityGetEntityResultBuilder

type GetEntityGetEntityResultBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetEntityResultBuilder

func NewGetEntityGetEntityResultBuilder() *GetEntityGetEntityResultBuilder

func (GetEntityGetEntityResultBuilder) Emit

func (*GetEntityGetEntityResultBuilder) Success

type GetEntityGetI16Args

type GetEntityGetI16Args struct {
	thrift.IRequest
}

func NewGetEntityGetI16Args

func NewGetEntityGetI16Args() *GetEntityGetI16Args

func (*GetEntityGetI16Args) Read

func (p *GetEntityGetI16Args) Read(iprot thrift.Protocol) error

func (*GetEntityGetI16Args) String

func (p *GetEntityGetI16Args) String() string

func (*GetEntityGetI16Args) Write

func (p *GetEntityGetI16Args) Write(oprot thrift.Protocol) error

type GetEntityGetI16ArgsBuilder

type GetEntityGetI16ArgsBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetI16ArgsBuilder

func NewGetEntityGetI16ArgsBuilder() *GetEntityGetI16ArgsBuilder

func (GetEntityGetI16ArgsBuilder) Emit

type GetEntityGetI16Result

type GetEntityGetI16Result struct {
	thrift.IResponse
	Success *int16 `thrift:"success,0,optional" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewGetEntityGetI16Result

func NewGetEntityGetI16Result() *GetEntityGetI16Result

func (*GetEntityGetI16Result) Exception

func (*GetEntityGetI16Result) GetSuccess

func (p *GetEntityGetI16Result) GetSuccess() int16

func (*GetEntityGetI16Result) IsSetSuccess

func (p *GetEntityGetI16Result) IsSetSuccess() bool

func (*GetEntityGetI16Result) Read

func (p *GetEntityGetI16Result) Read(iprot thrift.Protocol) error

func (*GetEntityGetI16Result) ReadField0

func (p *GetEntityGetI16Result) ReadField0(iprot thrift.Protocol) error

func (*GetEntityGetI16Result) SetSuccess

func (g *GetEntityGetI16Result) SetSuccess(success *int16) *GetEntityGetI16Result

func (*GetEntityGetI16Result) String

func (p *GetEntityGetI16Result) String() string

func (*GetEntityGetI16Result) Write

func (p *GetEntityGetI16Result) Write(oprot thrift.Protocol) error

type GetEntityGetI16ResultBuilder

type GetEntityGetI16ResultBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetI16ResultBuilder

func NewGetEntityGetI16ResultBuilder() *GetEntityGetI16ResultBuilder

func (GetEntityGetI16ResultBuilder) Emit

func (*GetEntityGetI16ResultBuilder) Success

type GetEntityGetI32Args

type GetEntityGetI32Args struct {
	thrift.IRequest
}

func NewGetEntityGetI32Args

func NewGetEntityGetI32Args() *GetEntityGetI32Args

func (*GetEntityGetI32Args) Read

func (p *GetEntityGetI32Args) Read(iprot thrift.Protocol) error

func (*GetEntityGetI32Args) String

func (p *GetEntityGetI32Args) String() string

func (*GetEntityGetI32Args) Write

func (p *GetEntityGetI32Args) Write(oprot thrift.Protocol) error

type GetEntityGetI32ArgsBuilder

type GetEntityGetI32ArgsBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetI32ArgsBuilder

func NewGetEntityGetI32ArgsBuilder() *GetEntityGetI32ArgsBuilder

func (GetEntityGetI32ArgsBuilder) Emit

type GetEntityGetI32Result

type GetEntityGetI32Result struct {
	thrift.IResponse
	Success *int32 `thrift:"success,0,optional" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewGetEntityGetI32Result

func NewGetEntityGetI32Result() *GetEntityGetI32Result

func (*GetEntityGetI32Result) Exception

func (*GetEntityGetI32Result) GetSuccess

func (p *GetEntityGetI32Result) GetSuccess() int32

func (*GetEntityGetI32Result) IsSetSuccess

func (p *GetEntityGetI32Result) IsSetSuccess() bool

func (*GetEntityGetI32Result) Read

func (p *GetEntityGetI32Result) Read(iprot thrift.Protocol) error

func (*GetEntityGetI32Result) ReadField0

func (p *GetEntityGetI32Result) ReadField0(iprot thrift.Protocol) error

func (*GetEntityGetI32Result) SetSuccess

func (g *GetEntityGetI32Result) SetSuccess(success *int32) *GetEntityGetI32Result

func (*GetEntityGetI32Result) String

func (p *GetEntityGetI32Result) String() string

func (*GetEntityGetI32Result) Write

func (p *GetEntityGetI32Result) Write(oprot thrift.Protocol) error

type GetEntityGetI32ResultBuilder

type GetEntityGetI32ResultBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetI32ResultBuilder

func NewGetEntityGetI32ResultBuilder() *GetEntityGetI32ResultBuilder

func (GetEntityGetI32ResultBuilder) Emit

func (*GetEntityGetI32ResultBuilder) Success

type GetEntityGetI64Args

type GetEntityGetI64Args struct {
	thrift.IRequest
}

func NewGetEntityGetI64Args

func NewGetEntityGetI64Args() *GetEntityGetI64Args

func (*GetEntityGetI64Args) Read

func (p *GetEntityGetI64Args) Read(iprot thrift.Protocol) error

func (*GetEntityGetI64Args) String

func (p *GetEntityGetI64Args) String() string

func (*GetEntityGetI64Args) Write

func (p *GetEntityGetI64Args) Write(oprot thrift.Protocol) error

type GetEntityGetI64ArgsBuilder

type GetEntityGetI64ArgsBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetI64ArgsBuilder

func NewGetEntityGetI64ArgsBuilder() *GetEntityGetI64ArgsBuilder

func (GetEntityGetI64ArgsBuilder) Emit

type GetEntityGetI64Result

type GetEntityGetI64Result struct {
	thrift.IResponse
	Success *int64 `thrift:"success,0,optional" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewGetEntityGetI64Result

func NewGetEntityGetI64Result() *GetEntityGetI64Result

func (*GetEntityGetI64Result) Exception

func (*GetEntityGetI64Result) GetSuccess

func (p *GetEntityGetI64Result) GetSuccess() int64

func (*GetEntityGetI64Result) IsSetSuccess

func (p *GetEntityGetI64Result) IsSetSuccess() bool

func (*GetEntityGetI64Result) Read

func (p *GetEntityGetI64Result) Read(iprot thrift.Protocol) error

func (*GetEntityGetI64Result) ReadField0

func (p *GetEntityGetI64Result) ReadField0(iprot thrift.Protocol) error

func (*GetEntityGetI64Result) SetSuccess

func (g *GetEntityGetI64Result) SetSuccess(success *int64) *GetEntityGetI64Result

func (*GetEntityGetI64Result) String

func (p *GetEntityGetI64Result) String() string

func (*GetEntityGetI64Result) Write

func (p *GetEntityGetI64Result) Write(oprot thrift.Protocol) error

type GetEntityGetI64ResultBuilder

type GetEntityGetI64ResultBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetI64ResultBuilder

func NewGetEntityGetI64ResultBuilder() *GetEntityGetI64ResultBuilder

func (GetEntityGetI64ResultBuilder) Emit

func (*GetEntityGetI64ResultBuilder) Success

type GetEntityGetLegacyStuffArgs

type GetEntityGetLegacyStuffArgs struct {
	thrift.IRequest
	NumPos  int64
	NumNeg1 int64
	NumNeg2 int64
}

Attributes:

  • NumPos
  • NumNeg1
  • NumNeg2

func NewGetEntityGetLegacyStuffArgs

func NewGetEntityGetLegacyStuffArgs() *GetEntityGetLegacyStuffArgs

func (*GetEntityGetLegacyStuffArgs) GetNumNeg1

func (p *GetEntityGetLegacyStuffArgs) GetNumNeg1() int64

func (*GetEntityGetLegacyStuffArgs) GetNumNeg2

func (p *GetEntityGetLegacyStuffArgs) GetNumNeg2() int64

func (*GetEntityGetLegacyStuffArgs) GetNumPos

func (p *GetEntityGetLegacyStuffArgs) GetNumPos() int64

func (*GetEntityGetLegacyStuffArgs) Read

func (*GetEntityGetLegacyStuffArgs) ReadField1

func (p *GetEntityGetLegacyStuffArgs) ReadField1(iprot thrift.Protocol) error

func (*GetEntityGetLegacyStuffArgs) ReadField_1

func (p *GetEntityGetLegacyStuffArgs) ReadField_1(iprot thrift.Protocol) error

func (*GetEntityGetLegacyStuffArgs) ReadField_2

func (p *GetEntityGetLegacyStuffArgs) ReadField_2(iprot thrift.Protocol) error

func (*GetEntityGetLegacyStuffArgs) SetNumNeg1

func (*GetEntityGetLegacyStuffArgs) SetNumNeg2

func (*GetEntityGetLegacyStuffArgs) SetNumPos

func (*GetEntityGetLegacyStuffArgs) String

func (p *GetEntityGetLegacyStuffArgs) String() string

func (*GetEntityGetLegacyStuffArgs) Write

type GetEntityGetLegacyStuffArgsBuilder

type GetEntityGetLegacyStuffArgsBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetLegacyStuffArgsBuilder

func NewGetEntityGetLegacyStuffArgsBuilder() *GetEntityGetLegacyStuffArgsBuilder

func (GetEntityGetLegacyStuffArgsBuilder) Emit

func (*GetEntityGetLegacyStuffArgsBuilder) NumNeg1

func (*GetEntityGetLegacyStuffArgsBuilder) NumNeg2

func (*GetEntityGetLegacyStuffArgsBuilder) NumPos

type GetEntityGetLegacyStuffResult

type GetEntityGetLegacyStuffResult struct {
	thrift.IResponse
	Success *int32 `thrift:"success,0,optional" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewGetEntityGetLegacyStuffResult

func NewGetEntityGetLegacyStuffResult() *GetEntityGetLegacyStuffResult

func (*GetEntityGetLegacyStuffResult) Exception

func (*GetEntityGetLegacyStuffResult) GetSuccess

func (p *GetEntityGetLegacyStuffResult) GetSuccess() int32

func (*GetEntityGetLegacyStuffResult) IsSetSuccess

func (p *GetEntityGetLegacyStuffResult) IsSetSuccess() bool

func (*GetEntityGetLegacyStuffResult) Read

func (*GetEntityGetLegacyStuffResult) ReadField0

func (p *GetEntityGetLegacyStuffResult) ReadField0(iprot thrift.Protocol) error

func (*GetEntityGetLegacyStuffResult) SetSuccess

func (*GetEntityGetLegacyStuffResult) String

func (*GetEntityGetLegacyStuffResult) Write

type GetEntityGetLegacyStuffResultBuilder

type GetEntityGetLegacyStuffResultBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetLegacyStuffResultBuilder

func NewGetEntityGetLegacyStuffResultBuilder() *GetEntityGetLegacyStuffResultBuilder

func (GetEntityGetLegacyStuffResultBuilder) Emit

func (*GetEntityGetLegacyStuffResultBuilder) Success

type GetEntityGetListArgs

type GetEntityGetListArgs struct {
	thrift.IRequest
}

func NewGetEntityGetListArgs

func NewGetEntityGetListArgs() *GetEntityGetListArgs

func (*GetEntityGetListArgs) Read

func (p *GetEntityGetListArgs) Read(iprot thrift.Protocol) error

func (*GetEntityGetListArgs) String

func (p *GetEntityGetListArgs) String() string

func (*GetEntityGetListArgs) Write

func (p *GetEntityGetListArgs) Write(oprot thrift.Protocol) error

type GetEntityGetListArgsBuilder

type GetEntityGetListArgsBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetListArgsBuilder

func NewGetEntityGetListArgsBuilder() *GetEntityGetListArgsBuilder

func (GetEntityGetListArgsBuilder) Emit

type GetEntityGetListResult

type GetEntityGetListResult struct {
	thrift.IResponse
	Success []string `thrift:"success,0,optional" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewGetEntityGetListResult

func NewGetEntityGetListResult() *GetEntityGetListResult

func (*GetEntityGetListResult) Exception

func (*GetEntityGetListResult) GetSuccess

func (p *GetEntityGetListResult) GetSuccess() []string

func (*GetEntityGetListResult) IsSetSuccess

func (p *GetEntityGetListResult) IsSetSuccess() bool

func (*GetEntityGetListResult) Read

func (*GetEntityGetListResult) ReadField0

func (p *GetEntityGetListResult) ReadField0(iprot thrift.Protocol) error

func (*GetEntityGetListResult) SetSuccess

func (g *GetEntityGetListResult) SetSuccess(success []string) *GetEntityGetListResult

func (*GetEntityGetListResult) String

func (p *GetEntityGetListResult) String() string

func (*GetEntityGetListResult) Write

func (p *GetEntityGetListResult) Write(oprot thrift.Protocol) error

type GetEntityGetListResultBuilder

type GetEntityGetListResultBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetListResultBuilder

func NewGetEntityGetListResultBuilder() *GetEntityGetListResultBuilder

func (GetEntityGetListResultBuilder) Emit

func (*GetEntityGetListResultBuilder) Success

type GetEntityGetMapArgs

type GetEntityGetMapArgs struct {
	thrift.IRequest
}

func NewGetEntityGetMapArgs

func NewGetEntityGetMapArgs() *GetEntityGetMapArgs

func (*GetEntityGetMapArgs) Read

func (p *GetEntityGetMapArgs) Read(iprot thrift.Protocol) error

func (*GetEntityGetMapArgs) String

func (p *GetEntityGetMapArgs) String() string

func (*GetEntityGetMapArgs) Write

func (p *GetEntityGetMapArgs) Write(oprot thrift.Protocol) error

type GetEntityGetMapArgsBuilder

type GetEntityGetMapArgsBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetMapArgsBuilder

func NewGetEntityGetMapArgsBuilder() *GetEntityGetMapArgsBuilder

func (GetEntityGetMapArgsBuilder) Emit

type GetEntityGetMapResult

type GetEntityGetMapResult struct {
	thrift.IResponse
	Success map[string]string `thrift:"success,0,optional" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewGetEntityGetMapResult

func NewGetEntityGetMapResult() *GetEntityGetMapResult

func (*GetEntityGetMapResult) Exception

func (*GetEntityGetMapResult) GetSuccess

func (p *GetEntityGetMapResult) GetSuccess() map[string]string

func (*GetEntityGetMapResult) IsSetSuccess

func (p *GetEntityGetMapResult) IsSetSuccess() bool

func (*GetEntityGetMapResult) Read

func (p *GetEntityGetMapResult) Read(iprot thrift.Protocol) error

func (*GetEntityGetMapResult) ReadField0

func (p *GetEntityGetMapResult) ReadField0(iprot thrift.Protocol) error

func (*GetEntityGetMapResult) SetSuccess

func (g *GetEntityGetMapResult) SetSuccess(success map[string]string) *GetEntityGetMapResult

func (*GetEntityGetMapResult) String

func (p *GetEntityGetMapResult) String() string

func (*GetEntityGetMapResult) Write

func (p *GetEntityGetMapResult) Write(oprot thrift.Protocol) error

type GetEntityGetMapResultBuilder

type GetEntityGetMapResultBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetMapResultBuilder

func NewGetEntityGetMapResultBuilder() *GetEntityGetMapResultBuilder

func (GetEntityGetMapResultBuilder) Emit

func (*GetEntityGetMapResultBuilder) Success

type GetEntityGetSetArgs

type GetEntityGetSetArgs struct {
	thrift.IRequest
}

func NewGetEntityGetSetArgs

func NewGetEntityGetSetArgs() *GetEntityGetSetArgs

func (*GetEntityGetSetArgs) Read

func (p *GetEntityGetSetArgs) Read(iprot thrift.Protocol) error

func (*GetEntityGetSetArgs) String

func (p *GetEntityGetSetArgs) String() string

func (*GetEntityGetSetArgs) Write

func (p *GetEntityGetSetArgs) Write(oprot thrift.Protocol) error

type GetEntityGetSetArgsBuilder

type GetEntityGetSetArgsBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetSetArgsBuilder

func NewGetEntityGetSetArgsBuilder() *GetEntityGetSetArgsBuilder

func (GetEntityGetSetArgsBuilder) Emit

type GetEntityGetSetResult

type GetEntityGetSetResult struct {
	thrift.IResponse
	Success []string `thrift:"success,0,optional" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewGetEntityGetSetResult

func NewGetEntityGetSetResult() *GetEntityGetSetResult

func (*GetEntityGetSetResult) Exception

func (*GetEntityGetSetResult) GetSuccess

func (p *GetEntityGetSetResult) GetSuccess() []string

func (*GetEntityGetSetResult) IsSetSuccess

func (p *GetEntityGetSetResult) IsSetSuccess() bool

func (*GetEntityGetSetResult) Read

func (p *GetEntityGetSetResult) Read(iprot thrift.Protocol) error

func (*GetEntityGetSetResult) ReadField0

func (p *GetEntityGetSetResult) ReadField0(iprot thrift.Protocol) error

func (*GetEntityGetSetResult) SetSuccess

func (g *GetEntityGetSetResult) SetSuccess(success []string) *GetEntityGetSetResult

func (*GetEntityGetSetResult) String

func (p *GetEntityGetSetResult) String() string

func (*GetEntityGetSetResult) Write

func (p *GetEntityGetSetResult) Write(oprot thrift.Protocol) error

type GetEntityGetSetResultBuilder

type GetEntityGetSetResultBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetSetResultBuilder

func NewGetEntityGetSetResultBuilder() *GetEntityGetSetResultBuilder

func (GetEntityGetSetResultBuilder) Emit

func (*GetEntityGetSetResultBuilder) Success

type GetEntityGetStringArgs

type GetEntityGetStringArgs struct {
	thrift.IRequest
}

func NewGetEntityGetStringArgs

func NewGetEntityGetStringArgs() *GetEntityGetStringArgs

func (*GetEntityGetStringArgs) Read

func (*GetEntityGetStringArgs) String

func (p *GetEntityGetStringArgs) String() string

func (*GetEntityGetStringArgs) Write

func (p *GetEntityGetStringArgs) Write(oprot thrift.Protocol) error

type GetEntityGetStringArgsBuilder

type GetEntityGetStringArgsBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetStringArgsBuilder

func NewGetEntityGetStringArgsBuilder() *GetEntityGetStringArgsBuilder

func (GetEntityGetStringArgsBuilder) Emit

type GetEntityGetStringResult

type GetEntityGetStringResult struct {
	thrift.IResponse
	Success *string `thrift:"success,0,optional" db:"success" json:"success,omitempty"`
}

Attributes:

  • Success

func NewGetEntityGetStringResult

func NewGetEntityGetStringResult() *GetEntityGetStringResult

func (*GetEntityGetStringResult) Exception

func (*GetEntityGetStringResult) GetSuccess

func (p *GetEntityGetStringResult) GetSuccess() string

func (*GetEntityGetStringResult) IsSetSuccess

func (p *GetEntityGetStringResult) IsSetSuccess() bool

func (*GetEntityGetStringResult) Read

func (*GetEntityGetStringResult) ReadField0

func (p *GetEntityGetStringResult) ReadField0(iprot thrift.Protocol) error

func (*GetEntityGetStringResult) SetSuccess

func (g *GetEntityGetStringResult) SetSuccess(success *string) *GetEntityGetStringResult

func (*GetEntityGetStringResult) String

func (p *GetEntityGetStringResult) String() string

func (*GetEntityGetStringResult) Write

type GetEntityGetStringResultBuilder

type GetEntityGetStringResultBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityGetStringResultBuilder

func NewGetEntityGetStringResultBuilder() *GetEntityGetStringResultBuilder

func (GetEntityGetStringResultBuilder) Emit

func (*GetEntityGetStringResultBuilder) Success

type GetEntityProcessor

type GetEntityProcessor struct {
	// contains filtered or unexported fields
}

func NewGetEntityProcessor

func NewGetEntityProcessor(handler GetEntity) *GetEntityProcessor

func (*GetEntityProcessor) AddToFunctionServiceMap

func (p *GetEntityProcessor) AddToFunctionServiceMap(key, service string)

func (*GetEntityProcessor) AddToProcessorMap

func (p *GetEntityProcessor) AddToProcessorMap(key string, processor thrift.ProcessorFunction)

func (*GetEntityProcessor) FunctionServiceMap

func (p *GetEntityProcessor) FunctionServiceMap() map[string]string

func (*GetEntityProcessor) GetProcessorFunction

func (p *GetEntityProcessor) GetProcessorFunction(key string) (processor thrift.ProcessorFunction, err error)

func (*GetEntityProcessor) ProcessorMap

func (p *GetEntityProcessor) ProcessorMap() map[string]thrift.ProcessorFunction

type GetEntityRequest

type GetEntityRequest struct {
	Id string `thrift:"id,1" db:"id" json:"id"`
}

Attributes:

  • Id
var GetEntityGetEntityArgs_R_DEFAULT *GetEntityRequest

func NewGetEntityRequest

func NewGetEntityRequest() *GetEntityRequest

func (*GetEntityRequest) GetId

func (p *GetEntityRequest) GetId() string

func (*GetEntityRequest) Read

func (p *GetEntityRequest) Read(iprot thrift.Protocol) error

func (*GetEntityRequest) ReadField1

func (p *GetEntityRequest) ReadField1(iprot thrift.Protocol) error

func (*GetEntityRequest) SetId

func (*GetEntityRequest) String

func (p *GetEntityRequest) String() string

func (*GetEntityRequest) Write

func (p *GetEntityRequest) Write(oprot thrift.Protocol) error

type GetEntityRequestBuilder

type GetEntityRequestBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityRequestBuilder

func NewGetEntityRequestBuilder() *GetEntityRequestBuilder

func (GetEntityRequestBuilder) Emit

func (*GetEntityRequestBuilder) Id

type GetEntityResponse

type GetEntityResponse struct {
	Entity string `thrift:"entity,1" db:"entity" json:"entity"`
}

Attributes:

  • Entity
var GetEntityGetEntityResult_Success_DEFAULT *GetEntityResponse

func NewGetEntityResponse

func NewGetEntityResponse() *GetEntityResponse

func (*GetEntityResponse) GetEntity

func (p *GetEntityResponse) GetEntity() string

func (*GetEntityResponse) Read

func (p *GetEntityResponse) Read(iprot thrift.Protocol) error

func (*GetEntityResponse) ReadField1

func (p *GetEntityResponse) ReadField1(iprot thrift.Protocol) error

func (*GetEntityResponse) SetEntity

func (g *GetEntityResponse) SetEntity(entity string) *GetEntityResponse

func (*GetEntityResponse) String

func (p *GetEntityResponse) String() string

func (*GetEntityResponse) Write

func (p *GetEntityResponse) Write(oprot thrift.Protocol) error

type GetEntityResponseBuilder

type GetEntityResponseBuilder struct {
	// contains filtered or unexported fields
}

func NewGetEntityResponseBuilder

func NewGetEntityResponseBuilder() *GetEntityResponseBuilder

func (GetEntityResponseBuilder) Emit

func (*GetEntityResponseBuilder) Entity

type GetEntityThreadsafeClient

type GetEntityThreadsafeClient struct {
	GetEntityClientInterface
	CC thrift.ClientConn
	Mu sync.Mutex
}

func NewGetEntityThreadsafeClient

func NewGetEntityThreadsafeClient(t thrift.Transport, iprot thrift.Protocol, oprot thrift.Protocol) *GetEntityThreadsafeClient

func NewGetEntityThreadsafeClientProtocol

func NewGetEntityThreadsafeClientProtocol(prot thrift.Protocol) *GetEntityThreadsafeClient

func (*GetEntityThreadsafeClient) Close

func (client *GetEntityThreadsafeClient) Close() error

func (*GetEntityThreadsafeClient) GetBinary

func (p *GetEntityThreadsafeClient) GetBinary() (_r []byte, err error)

func (*GetEntityThreadsafeClient) GetBool

func (p *GetEntityThreadsafeClient) GetBool() (_r bool, err error)

func (*GetEntityThreadsafeClient) GetByte

func (p *GetEntityThreadsafeClient) GetByte() (_r int8, err error)

func (*GetEntityThreadsafeClient) GetDouble

func (p *GetEntityThreadsafeClient) GetDouble() (_r float64, err error)

func (*GetEntityThreadsafeClient) GetEntity

Parameters:

  • R

func (*GetEntityThreadsafeClient) GetI16

func (p *GetEntityThreadsafeClient) GetI16() (_r int16, err error)

func (*GetEntityThreadsafeClient) GetI32

func (p *GetEntityThreadsafeClient) GetI32() (_r int32, err error)

func (*GetEntityThreadsafeClient) GetI64

func (p *GetEntityThreadsafeClient) GetI64() (_r int64, err error)

func (*GetEntityThreadsafeClient) GetLegacyStuff

func (p *GetEntityThreadsafeClient) GetLegacyStuff(numPos int64, numNeg1 int64, numNeg2 int64) (_r int32, err error)

Parameters:

  • NumPos
  • NumNeg1
  • NumNeg2

func (*GetEntityThreadsafeClient) GetList

func (p *GetEntityThreadsafeClient) GetList() (_r []string, err error)

func (*GetEntityThreadsafeClient) GetMap

func (p *GetEntityThreadsafeClient) GetMap() (_r map[string]string, err error)

func (*GetEntityThreadsafeClient) GetSet

func (p *GetEntityThreadsafeClient) GetSet() (_r []string, err error)

func (*GetEntityThreadsafeClient) GetString

func (p *GetEntityThreadsafeClient) GetString() (_r string, err error)

func (*GetEntityThreadsafeClient) IsOpen

func (client *GetEntityThreadsafeClient) IsOpen() bool

func (*GetEntityThreadsafeClient) Open

func (client *GetEntityThreadsafeClient) Open() error

Jump to

Keyboard shortcuts

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