(serviceMethod string, args interface{}, reply interface{})
| 26 | // Client defines the RPC client interface. |
| 27 | type Client interface { |
| 28 | Call(serviceMethod string, args interface{}, reply interface{}) error |
| 29 | Go(serviceMethod string, args interface{}, reply interface{}, done chan *rpc.Call) *rpc.Call |
| 30 | Close() error |
| 31 | } |
no outgoing calls