Documentation
¶
Overview ¶
Code generated by tl2gen; DO NOT EDIT.
Index ¶
- type Client
- func (c *Client) TestFunctionNoDep1(ctx context.Context, args TestFunctionNoDep1, extra *rpc.InvokeReqExtra, ...) (err error)
- func (c *Client) TestFunctionNoDep2(ctx context.Context, args TestFunctionNoDep2, extra *rpc.InvokeReqExtra, ...) (err error)
- func (c *Client) TestFunctionNoDep3(ctx context.Context, args TestFunctionNoDep3, extra *rpc.InvokeReqExtra, ...) (err error)
- func (c *Client) TestFunctionNoDep4(ctx context.Context, args TestFunctionNoDep4, extra *rpc.InvokeReqExtra, ...) (err error)
- func (c *Client) TestFunctionNoDep5(ctx context.Context, args TestFunctionNoDep5, extra *rpc.InvokeReqExtra, ...) (err error)
- func (c *Client) TestFunctionNoDep6(ctx context.Context, args TestFunctionNoDep6, extra *rpc.InvokeReqExtra, ...) (err error)
- func (c *Client) TestFunctionNoDep7(ctx context.Context, args TestFunctionNoDep7, extra *rpc.InvokeReqExtra, ...) (err error)
- func (c *Client) TestFunctionWithDep1(ctx context.Context, args TestFunctionWithDep1, extra *rpc.InvokeReqExtra, ...) (err error)
- func (c *Client) TestFunctionWithDep2(ctx context.Context, args TestFunctionWithDep2, extra *rpc.InvokeReqExtra, ...) (err error)
- type Handler
- type TestArrayFixedBool
- type TestArrayFlexibleBool
- type TestFixedParam
- type TestFunctionNoDep1
- type TestFunctionNoDep2
- type TestFunctionNoDep2__Result
- type TestFunctionNoDep3
- type TestFunctionNoDep4
- type TestFunctionNoDep5
- type TestFunctionNoDep6
- type TestFunctionNoDep7
- type TestFunctionNoDep7__Result
- type TestFunctionWithDep1
- type TestFunctionWithDep2
- type TestFunctionWithDep2__Result
- type TestObject
- type TestObjectWithMuiltiParams
- type TestObjectWithParam
- type TestParamsGeneration
- type TestVectorBool
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
Client rpc.Client
Network string // should be either "tcp4" or "unix"
Address string
ActorID int64 // should be >0 for routing via rpc-proxy
Timeout time.Duration // set to extra.CustomTimeoutMs, if not already set
}
func (*Client) TestFunctionNoDep1 ¶
func (c *Client) TestFunctionNoDep1(ctx context.Context, args TestFunctionNoDep1, extra *rpc.InvokeReqExtra, ret *int32) (err error)
func (*Client) TestFunctionNoDep2 ¶
func (c *Client) TestFunctionNoDep2(ctx context.Context, args TestFunctionNoDep2, extra *rpc.InvokeReqExtra, ret *TestFunctionNoDep2__Result) (err error)
func (*Client) TestFunctionNoDep3 ¶
func (c *Client) TestFunctionNoDep3(ctx context.Context, args TestFunctionNoDep3, extra *rpc.InvokeReqExtra, ret *[]int32) (err error)
func (*Client) TestFunctionNoDep4 ¶
func (c *Client) TestFunctionNoDep4(ctx context.Context, args TestFunctionNoDep4, extra *rpc.InvokeReqExtra, ret *bool) (err error)
func (*Client) TestFunctionNoDep5 ¶
func (c *Client) TestFunctionNoDep5(ctx context.Context, args TestFunctionNoDep5, extra *rpc.InvokeReqExtra, ret *TestObject) (err error)
func (*Client) TestFunctionNoDep6 ¶
func (c *Client) TestFunctionNoDep6(ctx context.Context, args TestFunctionNoDep6, extra *rpc.InvokeReqExtra, ret *TestArrayFixedBool) (err error)
func (*Client) TestFunctionNoDep7 ¶
func (c *Client) TestFunctionNoDep7(ctx context.Context, args TestFunctionNoDep7, extra *rpc.InvokeReqExtra, ret *TestFunctionNoDep7__Result) (err error)
func (*Client) TestFunctionWithDep1 ¶
func (c *Client) TestFunctionWithDep1(ctx context.Context, args TestFunctionWithDep1, extra *rpc.InvokeReqExtra, ret *[]int32) (err error)
func (*Client) TestFunctionWithDep2 ¶
func (c *Client) TestFunctionWithDep2(ctx context.Context, args TestFunctionWithDep2, extra *rpc.InvokeReqExtra, ret *TestFunctionWithDep2__Result) (err error)
type Handler ¶
type Handler struct {
TestFunctionNoDep1 func(ctx context.Context, args TestFunctionNoDep1) (int32, error) // casesTL2.testFunctionNoDep1
TestFunctionNoDep2 func(ctx context.Context, args TestFunctionNoDep2) (TestFunctionNoDep2__Result, error) // casesTL2.testFunctionNoDep2
TestFunctionNoDep3 func(ctx context.Context, args TestFunctionNoDep3) ([]int32, error) // casesTL2.testFunctionNoDep3
TestFunctionNoDep4 func(ctx context.Context, args TestFunctionNoDep4) (bool, error) // casesTL2.testFunctionNoDep4
TestFunctionNoDep5 func(ctx context.Context, args TestFunctionNoDep5) (TestObject, error) // casesTL2.testFunctionNoDep5
TestFunctionNoDep6 func(ctx context.Context, args TestFunctionNoDep6) (TestArrayFixedBool, error) // casesTL2.testFunctionNoDep6
TestFunctionNoDep7 func(ctx context.Context, args TestFunctionNoDep7) (TestFunctionNoDep7__Result, error) // casesTL2.testFunctionNoDep7
TestFunctionWithDep1 func(ctx context.Context, args TestFunctionWithDep1) ([]int32, error) // casesTL2.testFunctionWithDep1
TestFunctionWithDep2 func(ctx context.Context, args TestFunctionWithDep2) (TestFunctionWithDep2__Result, error) // casesTL2.testFunctionWithDep2
}
type TestArrayFixedBool ¶
type TestArrayFixedBool = internal.CasesTL2TestArrayFixedBool
type TestArrayFlexibleBool ¶
type TestArrayFlexibleBool = internal.CasesTL2TestArrayFlexibleBool
type TestFixedParam ¶
type TestFixedParam = internal.CasesTL2TestFixedParam
type TestFunctionNoDep1 ¶
type TestFunctionNoDep1 = internal.CasesTL2TestFunctionNoDep1
type TestFunctionNoDep2 ¶
type TestFunctionNoDep2 = internal.CasesTL2TestFunctionNoDep2
type TestFunctionNoDep3 ¶
type TestFunctionNoDep3 = internal.CasesTL2TestFunctionNoDep3
type TestFunctionNoDep4 ¶
type TestFunctionNoDep4 = internal.CasesTL2TestFunctionNoDep4
type TestFunctionNoDep5 ¶
type TestFunctionNoDep5 = internal.CasesTL2TestFunctionNoDep5
type TestFunctionNoDep6 ¶
type TestFunctionNoDep6 = internal.CasesTL2TestFunctionNoDep6
type TestFunctionNoDep7 ¶
type TestFunctionNoDep7 = internal.CasesTL2TestFunctionNoDep7
type TestFunctionNoDep7__Result ¶
type TestFunctionNoDep7__Result = internal.CasesTestAllDicts
type TestFunctionWithDep1 ¶
type TestFunctionWithDep1 = internal.CasesTL2TestFunctionWithDep1
type TestFunctionWithDep2 ¶
type TestFunctionWithDep2 = internal.CasesTL2TestFunctionWithDep2
type TestFunctionWithDep2__Result ¶
type TestFunctionWithDep2__Result = internal.BenchmarksVrutoyPositions
type TestObject ¶
type TestObject = internal.CasesTL2TestObject
type TestObjectWithMuiltiParams ¶
type TestObjectWithMuiltiParams = internal.CasesTL2TestObjectWithMuiltiParams
type TestObjectWithParam ¶
type TestObjectWithParam = internal.CasesTL2TestObjectWithParam
type TestParamsGeneration ¶
type TestParamsGeneration = internal.CasesTL2TestParamsGeneration
type TestVectorBool ¶
type TestVectorBool = internal.CasesTL2TestVectorBool
Click to show internal directories.
Click to hide internal directories.