(controllerClient controller.ControllerInterface, funcletClient client.FuncletInterface, opt *options.ControllerOptions)
| 32 | } |
| 33 | |
| 34 | func NewControllerCallClient(controllerClient controller.ControllerInterface, |
| 35 | funcletClient client.FuncletInterface, |
| 36 | opt *options.ControllerOptions) *ControllerCallClient { |
| 37 | return &ControllerCallClient{controllerClient, funcletClient, opt} |
| 38 | } |
| 39 | |
| 40 | func (mc *ControllerCallClient) Invoke(ir *api.InvokeRequest) (response *api.InvokeResponse, err error) { |
| 41 | h := make(map[string]string, 0) |
no outgoing calls