CallNode calls node method.
(node proto.NodeID, method string, args, reply interface{})
| 117 | |
| 118 | // CallNode calls node method. |
| 119 | func (c *Caller) CallNode(node proto.NodeID, method string, args, reply interface{}) (err error) { |
| 120 | return c.CallNodeWithContext(context.Background(), node, method, args, reply) |
| 121 | } |