(args []interface{}, responseCallback dnode.Function)
| 693 | } |
| 694 | |
| 695 | func (c *Client) wrapMethodArgs(args []interface{}, responseCallback dnode.Function) []interface{} { |
| 696 | options := callOptionsOut{ |
| 697 | WithArgs: args, |
| 698 | callOptions: callOptions{ |
| 699 | Kite: *c.LocalKite.Kite(), |
| 700 | Auth: c.authCopy(), |
| 701 | ResponseCallback: responseCallback, |
| 702 | }, |
| 703 | } |
| 704 | return []interface{}{options} |
| 705 | } |
| 706 | |
| 707 | // Tell makes a blocking method call to the server. |
| 708 | // Waits until the callback function is called by the other side and |
no test coverage detected