Documentation ¶
Index ¶
- type Client
- func (c *Client) Close() error
- func (c *Client) Connect(addr string, params map[string]interface{}) (bool, error)
- func (c *Client) Invoke(method string, req goja.Value, params map[string]interface{}) (*grpcext.Response, error)
- func (c *Client) Load(importPaths []string, filenames ...string) ([]MethodInfo, error)
- type MethodInfo
- type ModuleInstance
- type RootModule
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Client ¶
type Client struct {
// contains filtered or unexported fields
}
Client represents a gRPC client that can be used to make RPC requests
func (*Client) Connect ¶
Connect is a block dial to the gRPC server at the given address (host:port)
type MethodInfo ¶
type MethodInfo struct { Package string Service string FullMethod string grpc.MethodInfo `json:"-" js:"-"` }
MethodInfo holds information on any parsed method descriptors that can be used by the goja VM
type ModuleInstance ¶
type ModuleInstance struct {
// contains filtered or unexported fields
}
ModuleInstance represents an instance of the GRPC module for every VU.
func (*ModuleInstance) Exports ¶
func (mi *ModuleInstance) Exports() modules.Exports
Exports returns the exports of the grpc module.
func (*ModuleInstance) NewClient ¶
func (mi *ModuleInstance) NewClient(call goja.ConstructorCall) *goja.Object
NewClient is the JS constructor for the grpc Client.
type RootModule ¶
type RootModule struct{}
RootModule is the global module instance that will create module instances for each VU.
func (*RootModule) NewModuleInstance ¶
func (*RootModule) NewModuleInstance(vu modules.VU) modules.Instance
NewModuleInstance implements the modules.Module interface to return a new instance for each VU.
Click to show internal directories.
Click to hide internal directories.